├── .eslintrc.json ├── .github └── preview.png ├── .gitignore ├── README.md ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── fleekLogo.svg ├── fleekMark.svg ├── next.svg ├── nextMark.svg └── plus.svg ├── src └── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/nextjs-template/2aee5fe392544483540058cb6ae942504c545281/.github/preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next.js + Fleek Starter Kit 2 | 3 | ![image](https://github.com/fleekxyz/nextjs-template/assets/55561695/ecee3337-3dee-4543-a18b-57151cb18448) 4 | 5 | ## 🚀 Project Structure 6 | 7 | Inside of your Next.js project, you'll see the following folders and files: 8 | 9 | ``` 10 | / 11 | ├── public/ 12 | │ └── favicon.svg 13 | ├── src/ 14 | │ └── app/ 15 | │ ├── favicon.ico 16 | │ ├── globals.css 17 | │ ├── layout.tsx 18 | │ └── page.tsx 19 | ├── next.config.js 20 | ├── tailwind.config.js 21 | ├── tsconfig.json 22 | └── package.json 23 | ``` 24 | 25 | If you want to lern more about the `app` router you can checkout [Next.js documentation](https://nextjs.org/docs/app/building-your-application/routing#the-app-directory). 26 | 27 | Any static assets, like images, can be placed in the `public/` directory. 28 | 29 | 30 | ## 🧞 Commands 31 | 32 | All commands are run from the root of the project, from a terminal: 33 | 34 | | Command | Action | 35 | | :--------------------- | :----------------------------------------------- | 36 | | `pnpm install` | Installs dependencies | 37 | | `pnpm run dev` | Starts local dev server at `localhost:3000` | 38 | | `pnpm run build` | Build your production site to `./out/` | 39 | | `pnpm run start` | Preview your build locally, before deploying | 40 | | `pnpm run lint ...` | Run Linter | 41 | 42 | ## ⚡ How to deploy to Fleek 43 | 44 | ### 1. Create a `fleek.json` config file: 45 | You can configure this site deployment using [Fleek CLI]() and running: 46 | ``` 47 | > fleek sites init 48 | WARN! Fleek CLI is in beta phase, use it under your own responsibility 49 | ? Choose one of the existing sites or create a new one. › 50 | ❯ Create a new site 51 | ``` 52 | It will prompt you for a `name`, `dist` directory location & `build command` 53 | - `name`: How you want to name the site 54 | - `dist`: The output directory where the site is located, for this template it's `out` 55 | - `build command`: Command to build your site, this will be used to deploy the latest version either by CLI or Github Actions 56 | 57 | ### 2. Deploy the site 58 | After configuiring your `fleek.json` file, you can deployt the site by running 59 | 60 | ``` 61 | fleek sites deploy 62 | ``` 63 | After running it you will get an output like this: 64 | ``` 65 | WARN! Fleek CLI is in beta, use it at your own discretion 66 | > Success! Deployed! 67 | > Site IPFS CID: QmP1nDyoHqSrRabwUSrxRV3DJqiKH7b9t1tpLcr1NTkm1M 68 | 69 | > You can visit through the gateway: 70 | > https://ipfs.io/ipfs/QmP1nDyoHqSrRabwUSrxRV3DJqiKH7b9t1tpLcr1NTkm1M 71 | ``` 72 | 73 | ### Extra features 74 | - **Continuous Integration (CI):** `fleek sites ci` [Documentation.](https://docs.fleek.xyz/services/sites/#continuous-integration-ci) 75 | - **Adding custom domains:** `fleek domains create` [Documentation.](https://docs.fleek.xyz/services/domains/) 76 | 77 | 78 | ### Keep in mind: 79 | 80 | This template has been configured to produce a static output. 81 | 82 | ```js 83 | /** @type {import('next').NextConfig} */ 84 | const nextConfig = { 85 | output: 'export', 86 | reactStrictMode: true, 87 | images: { 88 | unoptimized: true, 89 | }, 90 | trailingSlash: true, 91 | } 92 | 93 | module.exports = nextConfig 94 | 95 | ``` 96 | 97 | You can find more information about static builds in [Next Documentation](https://nextjs.org/docs/app/building-your-application/deploying/static-exports#configuration) 98 | 99 | 100 | ## 👀 Want to learn more? 101 | 102 | Feel free to check [Next.js documentation](https://nextjs.org/docs) or jump into Next.js [learning platform](https://nextjs.org/learn/foundations/about-nextjs?utm_source=next-site&utm_medium=nav-cta&utm_campaign=next-website). 103 | 104 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | output: 'export', 4 | reactStrictMode: true, 5 | images: { 6 | unoptimized: true, 7 | }, 8 | trailingSlash: true, 9 | } 10 | 11 | module.exports = nextConfig 12 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-template", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "next-template", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@types/node": "20.1.4", 12 | "@types/react": "18.2.6", 13 | "@types/react-dom": "18.2.4", 14 | "autoprefixer": "10.4.14", 15 | "eslint": "8.40.0", 16 | "eslint-config-next": "13.4.2", 17 | "next": "13.4.2", 18 | "postcss": "8.4.23", 19 | "react": "18.2.0", 20 | "react-dom": "18.2.0", 21 | "tailwindcss": "3.3.2", 22 | "typescript": "5.0.4" 23 | } 24 | }, 25 | "node_modules/@alloc/quick-lru": { 26 | "version": "5.2.0", 27 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 28 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 29 | "engines": { 30 | "node": ">=10" 31 | }, 32 | "funding": { 33 | "url": "https://github.com/sponsors/sindresorhus" 34 | } 35 | }, 36 | "node_modules/@babel/runtime": { 37 | "version": "7.21.5", 38 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", 39 | "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", 40 | "dependencies": { 41 | "regenerator-runtime": "^0.13.11" 42 | }, 43 | "engines": { 44 | "node": ">=6.9.0" 45 | } 46 | }, 47 | "node_modules/@eslint-community/eslint-utils": { 48 | "version": "4.4.0", 49 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 50 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 51 | "dependencies": { 52 | "eslint-visitor-keys": "^3.3.0" 53 | }, 54 | "engines": { 55 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 56 | }, 57 | "peerDependencies": { 58 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 59 | } 60 | }, 61 | "node_modules/@eslint-community/regexpp": { 62 | "version": "4.5.1", 63 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 64 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 65 | "engines": { 66 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 67 | } 68 | }, 69 | "node_modules/@eslint/eslintrc": { 70 | "version": "2.0.3", 71 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 72 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 73 | "dependencies": { 74 | "ajv": "^6.12.4", 75 | "debug": "^4.3.2", 76 | "espree": "^9.5.2", 77 | "globals": "^13.19.0", 78 | "ignore": "^5.2.0", 79 | "import-fresh": "^3.2.1", 80 | "js-yaml": "^4.1.0", 81 | "minimatch": "^3.1.2", 82 | "strip-json-comments": "^3.1.1" 83 | }, 84 | "engines": { 85 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 86 | }, 87 | "funding": { 88 | "url": "https://opencollective.com/eslint" 89 | } 90 | }, 91 | "node_modules/@eslint/js": { 92 | "version": "8.40.0", 93 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.40.0.tgz", 94 | "integrity": "sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA==", 95 | "engines": { 96 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 97 | } 98 | }, 99 | "node_modules/@humanwhocodes/config-array": { 100 | "version": "0.11.8", 101 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", 102 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", 103 | "dependencies": { 104 | "@humanwhocodes/object-schema": "^1.2.1", 105 | "debug": "^4.1.1", 106 | "minimatch": "^3.0.5" 107 | }, 108 | "engines": { 109 | "node": ">=10.10.0" 110 | } 111 | }, 112 | "node_modules/@humanwhocodes/module-importer": { 113 | "version": "1.0.1", 114 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 115 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 116 | "engines": { 117 | "node": ">=12.22" 118 | }, 119 | "funding": { 120 | "type": "github", 121 | "url": "https://github.com/sponsors/nzakas" 122 | } 123 | }, 124 | "node_modules/@humanwhocodes/object-schema": { 125 | "version": "1.2.1", 126 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 127 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 128 | }, 129 | "node_modules/@jridgewell/gen-mapping": { 130 | "version": "0.3.3", 131 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 132 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 133 | "dependencies": { 134 | "@jridgewell/set-array": "^1.0.1", 135 | "@jridgewell/sourcemap-codec": "^1.4.10", 136 | "@jridgewell/trace-mapping": "^0.3.9" 137 | }, 138 | "engines": { 139 | "node": ">=6.0.0" 140 | } 141 | }, 142 | "node_modules/@jridgewell/resolve-uri": { 143 | "version": "3.1.0", 144 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 145 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 146 | "engines": { 147 | "node": ">=6.0.0" 148 | } 149 | }, 150 | "node_modules/@jridgewell/set-array": { 151 | "version": "1.1.2", 152 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 153 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 154 | "engines": { 155 | "node": ">=6.0.0" 156 | } 157 | }, 158 | "node_modules/@jridgewell/sourcemap-codec": { 159 | "version": "1.4.15", 160 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 161 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 162 | }, 163 | "node_modules/@jridgewell/trace-mapping": { 164 | "version": "0.3.18", 165 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 166 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 167 | "dependencies": { 168 | "@jridgewell/resolve-uri": "3.1.0", 169 | "@jridgewell/sourcemap-codec": "1.4.14" 170 | } 171 | }, 172 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 173 | "version": "1.4.14", 174 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 175 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 176 | }, 177 | "node_modules/@next/env": { 178 | "version": "13.4.2", 179 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.2.tgz", 180 | "integrity": "sha512-Wqvo7lDeS0KGwtwg9TT9wKQ8raelmUxt+TQKWvG/xKfcmDXNOtCuaszcfCF8JzlBG1q0VhpI6CKaRMbVPMDWgw==" 181 | }, 182 | "node_modules/@next/eslint-plugin-next": { 183 | "version": "13.4.2", 184 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.2.tgz", 185 | "integrity": "sha512-ZeFWgrxwckxTpYM+ANeUL9E7LOGPbZKmI94LJIjbDU69iEIgqd4WD0l2pVbOJMr/+vgoZmJ9Dx1m0WJ7WScXHA==", 186 | "dependencies": { 187 | "glob": "7.1.7" 188 | } 189 | }, 190 | "node_modules/@next/swc-darwin-arm64": { 191 | "version": "13.4.2", 192 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.2.tgz", 193 | "integrity": "sha512-6BBlqGu3ewgJflv9iLCwO1v1hqlecaIH2AotpKfVUEzUxuuDNJQZ2a4KLb4MBl8T9/vca1YuWhSqtbF6ZuUJJw==", 194 | "cpu": [ 195 | "arm64" 196 | ], 197 | "optional": true, 198 | "os": [ 199 | "darwin" 200 | ], 201 | "engines": { 202 | "node": ">= 10" 203 | } 204 | }, 205 | "node_modules/@next/swc-darwin-x64": { 206 | "version": "13.4.2", 207 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.2.tgz", 208 | "integrity": "sha512-iZuYr7ZvGLPjPmfhhMl0ISm+z8EiyLBC1bLyFwGBxkWmPXqdJ60mzuTaDSr5WezDwv0fz32HB7JHmRC6JVHSZg==", 209 | "cpu": [ 210 | "x64" 211 | ], 212 | "optional": true, 213 | "os": [ 214 | "darwin" 215 | ], 216 | "engines": { 217 | "node": ">= 10" 218 | } 219 | }, 220 | "node_modules/@next/swc-linux-arm64-gnu": { 221 | "version": "13.4.2", 222 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.2.tgz", 223 | "integrity": "sha512-2xVabFtIge6BJTcJrW8YuUnYTuQjh4jEuRuS2mscyNVOj6zUZkom3CQg+egKOoS+zh2rrro66ffSKIS+ztFJTg==", 224 | "cpu": [ 225 | "arm64" 226 | ], 227 | "optional": true, 228 | "os": [ 229 | "linux" 230 | ], 231 | "engines": { 232 | "node": ">= 10" 233 | } 234 | }, 235 | "node_modules/@next/swc-linux-arm64-musl": { 236 | "version": "13.4.2", 237 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.2.tgz", 238 | "integrity": "sha512-wKRCQ27xCUJx5d6IivfjYGq8oVngqIhlhSAJntgXLt7Uo9sRT/3EppMHqUZRfyuNBTbykEre1s5166z+pvRB5A==", 239 | "cpu": [ 240 | "arm64" 241 | ], 242 | "optional": true, 243 | "os": [ 244 | "linux" 245 | ], 246 | "engines": { 247 | "node": ">= 10" 248 | } 249 | }, 250 | "node_modules/@next/swc-linux-x64-gnu": { 251 | "version": "13.4.2", 252 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.2.tgz", 253 | "integrity": "sha512-NpCa+UVhhuNeaFVUP1Bftm0uqtvLWq2JTm7+Ta48+2Uqj2mNXrDIvyn1DY/ZEfmW/1yvGBRaUAv9zkMkMRixQA==", 254 | "cpu": [ 255 | "x64" 256 | ], 257 | "optional": true, 258 | "os": [ 259 | "linux" 260 | ], 261 | "engines": { 262 | "node": ">= 10" 263 | } 264 | }, 265 | "node_modules/@next/swc-linux-x64-musl": { 266 | "version": "13.4.2", 267 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.2.tgz", 268 | "integrity": "sha512-ZWVC72x0lW4aj44e3khvBrj2oSYj1bD0jESmyah3zG/3DplEy/FOtYkMzbMjHTdDSheso7zH8GIlW6CDQnKhmQ==", 269 | "cpu": [ 270 | "x64" 271 | ], 272 | "optional": true, 273 | "os": [ 274 | "linux" 275 | ], 276 | "engines": { 277 | "node": ">= 10" 278 | } 279 | }, 280 | "node_modules/@next/swc-win32-arm64-msvc": { 281 | "version": "13.4.2", 282 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.2.tgz", 283 | "integrity": "sha512-pLT+OWYpzJig5K4VKhLttlIfBcVZfr2+Xbjra0Tjs83NQSkFS+y7xx+YhCwvpEmXYLIvaggj2ONPyjbiigOvHQ==", 284 | "cpu": [ 285 | "arm64" 286 | ], 287 | "optional": true, 288 | "os": [ 289 | "win32" 290 | ], 291 | "engines": { 292 | "node": ">= 10" 293 | } 294 | }, 295 | "node_modules/@next/swc-win32-ia32-msvc": { 296 | "version": "13.4.2", 297 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.2.tgz", 298 | "integrity": "sha512-dhpiksQCyGca4WY0fJyzK3FxMDFoqMb0Cn+uDB+9GYjpU2K5//UGPQlCwiK4JHxuhg8oLMag5Nf3/IPSJNG8jw==", 299 | "cpu": [ 300 | "ia32" 301 | ], 302 | "optional": true, 303 | "os": [ 304 | "win32" 305 | ], 306 | "engines": { 307 | "node": ">= 10" 308 | } 309 | }, 310 | "node_modules/@next/swc-win32-x64-msvc": { 311 | "version": "13.4.2", 312 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.2.tgz", 313 | "integrity": "sha512-O7bort1Vld00cu8g0jHZq3cbSTUNMohOEvYqsqE10+yfohhdPHzvzO+ziJRz4Dyyr/fYKREwS7gR4JC0soSOMw==", 314 | "cpu": [ 315 | "x64" 316 | ], 317 | "optional": true, 318 | "os": [ 319 | "win32" 320 | ], 321 | "engines": { 322 | "node": ">= 10" 323 | } 324 | }, 325 | "node_modules/@nodelib/fs.scandir": { 326 | "version": "2.1.5", 327 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 328 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 329 | "dependencies": { 330 | "@nodelib/fs.stat": "2.0.5", 331 | "run-parallel": "^1.1.9" 332 | }, 333 | "engines": { 334 | "node": ">= 8" 335 | } 336 | }, 337 | "node_modules/@nodelib/fs.stat": { 338 | "version": "2.0.5", 339 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 340 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 341 | "engines": { 342 | "node": ">= 8" 343 | } 344 | }, 345 | "node_modules/@nodelib/fs.walk": { 346 | "version": "1.2.8", 347 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 348 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 349 | "dependencies": { 350 | "@nodelib/fs.scandir": "2.1.5", 351 | "fastq": "^1.6.0" 352 | }, 353 | "engines": { 354 | "node": ">= 8" 355 | } 356 | }, 357 | "node_modules/@pkgr/utils": { 358 | "version": "2.4.0", 359 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.0.tgz", 360 | "integrity": "sha512-2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw==", 361 | "dependencies": { 362 | "cross-spawn": "^7.0.3", 363 | "fast-glob": "^3.2.12", 364 | "is-glob": "^4.0.3", 365 | "open": "^9.1.0", 366 | "picocolors": "^1.0.0", 367 | "tslib": "^2.5.0" 368 | }, 369 | "engines": { 370 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 371 | }, 372 | "funding": { 373 | "url": "https://opencollective.com/unts" 374 | } 375 | }, 376 | "node_modules/@rushstack/eslint-patch": { 377 | "version": "1.2.0", 378 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", 379 | "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" 380 | }, 381 | "node_modules/@swc/helpers": { 382 | "version": "0.5.1", 383 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 384 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 385 | "dependencies": { 386 | "tslib": "^2.4.0" 387 | } 388 | }, 389 | "node_modules/@types/json5": { 390 | "version": "0.0.29", 391 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 392 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 393 | }, 394 | "node_modules/@types/node": { 395 | "version": "20.1.4", 396 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.1.4.tgz", 397 | "integrity": "sha512-At4pvmIOki8yuwLtd7BNHl3CiWNbtclUbNtScGx4OHfBd4/oWoJC8KRCIxXwkdndzhxOsPXihrsOoydxBjlE9Q==" 398 | }, 399 | "node_modules/@types/prop-types": { 400 | "version": "15.7.5", 401 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 402 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 403 | }, 404 | "node_modules/@types/react": { 405 | "version": "18.2.6", 406 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz", 407 | "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==", 408 | "dependencies": { 409 | "@types/prop-types": "*", 410 | "@types/scheduler": "*", 411 | "csstype": "^3.0.2" 412 | } 413 | }, 414 | "node_modules/@types/react-dom": { 415 | "version": "18.2.4", 416 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", 417 | "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", 418 | "dependencies": { 419 | "@types/react": "*" 420 | } 421 | }, 422 | "node_modules/@types/scheduler": { 423 | "version": "0.16.3", 424 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 425 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 426 | }, 427 | "node_modules/@typescript-eslint/parser": { 428 | "version": "5.59.5", 429 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", 430 | "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", 431 | "dependencies": { 432 | "@typescript-eslint/scope-manager": "5.59.5", 433 | "@typescript-eslint/types": "5.59.5", 434 | "@typescript-eslint/typescript-estree": "5.59.5", 435 | "debug": "^4.3.4" 436 | }, 437 | "engines": { 438 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 439 | }, 440 | "funding": { 441 | "type": "opencollective", 442 | "url": "https://opencollective.com/typescript-eslint" 443 | }, 444 | "peerDependencies": { 445 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 446 | }, 447 | "peerDependenciesMeta": { 448 | "typescript": { 449 | "optional": true 450 | } 451 | } 452 | }, 453 | "node_modules/@typescript-eslint/scope-manager": { 454 | "version": "5.59.5", 455 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", 456 | "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", 457 | "dependencies": { 458 | "@typescript-eslint/types": "5.59.5", 459 | "@typescript-eslint/visitor-keys": "5.59.5" 460 | }, 461 | "engines": { 462 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 463 | }, 464 | "funding": { 465 | "type": "opencollective", 466 | "url": "https://opencollective.com/typescript-eslint" 467 | } 468 | }, 469 | "node_modules/@typescript-eslint/types": { 470 | "version": "5.59.5", 471 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", 472 | "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", 473 | "engines": { 474 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 475 | }, 476 | "funding": { 477 | "type": "opencollective", 478 | "url": "https://opencollective.com/typescript-eslint" 479 | } 480 | }, 481 | "node_modules/@typescript-eslint/typescript-estree": { 482 | "version": "5.59.5", 483 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", 484 | "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", 485 | "dependencies": { 486 | "@typescript-eslint/types": "5.59.5", 487 | "@typescript-eslint/visitor-keys": "5.59.5", 488 | "debug": "^4.3.4", 489 | "globby": "^11.1.0", 490 | "is-glob": "^4.0.3", 491 | "semver": "^7.3.7", 492 | "tsutils": "^3.21.0" 493 | }, 494 | "engines": { 495 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 496 | }, 497 | "funding": { 498 | "type": "opencollective", 499 | "url": "https://opencollective.com/typescript-eslint" 500 | }, 501 | "peerDependenciesMeta": { 502 | "typescript": { 503 | "optional": true 504 | } 505 | } 506 | }, 507 | "node_modules/@typescript-eslint/visitor-keys": { 508 | "version": "5.59.5", 509 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", 510 | "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", 511 | "dependencies": { 512 | "@typescript-eslint/types": "5.59.5", 513 | "eslint-visitor-keys": "^3.3.0" 514 | }, 515 | "engines": { 516 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 517 | }, 518 | "funding": { 519 | "type": "opencollective", 520 | "url": "https://opencollective.com/typescript-eslint" 521 | } 522 | }, 523 | "node_modules/acorn": { 524 | "version": "8.8.2", 525 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 526 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 527 | "bin": { 528 | "acorn": "bin/acorn" 529 | }, 530 | "engines": { 531 | "node": ">=0.4.0" 532 | } 533 | }, 534 | "node_modules/acorn-jsx": { 535 | "version": "5.3.2", 536 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 537 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 538 | "peerDependencies": { 539 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 540 | } 541 | }, 542 | "node_modules/ajv": { 543 | "version": "6.12.6", 544 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 545 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 546 | "dependencies": { 547 | "fast-deep-equal": "^3.1.1", 548 | "fast-json-stable-stringify": "^2.0.0", 549 | "json-schema-traverse": "^0.4.1", 550 | "uri-js": "^4.2.2" 551 | }, 552 | "funding": { 553 | "type": "github", 554 | "url": "https://github.com/sponsors/epoberezkin" 555 | } 556 | }, 557 | "node_modules/ansi-regex": { 558 | "version": "5.0.1", 559 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 560 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 561 | "engines": { 562 | "node": ">=8" 563 | } 564 | }, 565 | "node_modules/ansi-styles": { 566 | "version": "4.3.0", 567 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 568 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 569 | "dependencies": { 570 | "color-convert": "^2.0.1" 571 | }, 572 | "engines": { 573 | "node": ">=8" 574 | }, 575 | "funding": { 576 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 577 | } 578 | }, 579 | "node_modules/any-promise": { 580 | "version": "1.3.0", 581 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 582 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 583 | }, 584 | "node_modules/anymatch": { 585 | "version": "3.1.3", 586 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 587 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 588 | "dependencies": { 589 | "normalize-path": "^3.0.0", 590 | "picomatch": "^2.0.4" 591 | }, 592 | "engines": { 593 | "node": ">= 8" 594 | } 595 | }, 596 | "node_modules/arg": { 597 | "version": "5.0.2", 598 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 599 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 600 | }, 601 | "node_modules/argparse": { 602 | "version": "2.0.1", 603 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 604 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 605 | }, 606 | "node_modules/aria-query": { 607 | "version": "5.1.3", 608 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 609 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 610 | "dependencies": { 611 | "deep-equal": "^2.0.5" 612 | } 613 | }, 614 | "node_modules/array-buffer-byte-length": { 615 | "version": "1.0.0", 616 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 617 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 618 | "dependencies": { 619 | "call-bind": "^1.0.2", 620 | "is-array-buffer": "^3.0.1" 621 | }, 622 | "funding": { 623 | "url": "https://github.com/sponsors/ljharb" 624 | } 625 | }, 626 | "node_modules/array-includes": { 627 | "version": "3.1.6", 628 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 629 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 630 | "dependencies": { 631 | "call-bind": "^1.0.2", 632 | "define-properties": "^1.1.4", 633 | "es-abstract": "^1.20.4", 634 | "get-intrinsic": "^1.1.3", 635 | "is-string": "^1.0.7" 636 | }, 637 | "engines": { 638 | "node": ">= 0.4" 639 | }, 640 | "funding": { 641 | "url": "https://github.com/sponsors/ljharb" 642 | } 643 | }, 644 | "node_modules/array-union": { 645 | "version": "2.1.0", 646 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 647 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 648 | "engines": { 649 | "node": ">=8" 650 | } 651 | }, 652 | "node_modules/array.prototype.flat": { 653 | "version": "1.3.1", 654 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 655 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 656 | "dependencies": { 657 | "call-bind": "^1.0.2", 658 | "define-properties": "^1.1.4", 659 | "es-abstract": "^1.20.4", 660 | "es-shim-unscopables": "^1.0.0" 661 | }, 662 | "engines": { 663 | "node": ">= 0.4" 664 | }, 665 | "funding": { 666 | "url": "https://github.com/sponsors/ljharb" 667 | } 668 | }, 669 | "node_modules/array.prototype.flatmap": { 670 | "version": "1.3.1", 671 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 672 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 673 | "dependencies": { 674 | "call-bind": "^1.0.2", 675 | "define-properties": "^1.1.4", 676 | "es-abstract": "^1.20.4", 677 | "es-shim-unscopables": "^1.0.0" 678 | }, 679 | "engines": { 680 | "node": ">= 0.4" 681 | }, 682 | "funding": { 683 | "url": "https://github.com/sponsors/ljharb" 684 | } 685 | }, 686 | "node_modules/array.prototype.tosorted": { 687 | "version": "1.1.1", 688 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 689 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 690 | "dependencies": { 691 | "call-bind": "^1.0.2", 692 | "define-properties": "^1.1.4", 693 | "es-abstract": "^1.20.4", 694 | "es-shim-unscopables": "^1.0.0", 695 | "get-intrinsic": "^1.1.3" 696 | } 697 | }, 698 | "node_modules/ast-types-flow": { 699 | "version": "0.0.7", 700 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 701 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 702 | }, 703 | "node_modules/autoprefixer": { 704 | "version": "10.4.14", 705 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", 706 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", 707 | "funding": [ 708 | { 709 | "type": "opencollective", 710 | "url": "https://opencollective.com/postcss/" 711 | }, 712 | { 713 | "type": "tidelift", 714 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 715 | } 716 | ], 717 | "dependencies": { 718 | "browserslist": "^4.21.5", 719 | "caniuse-lite": "^1.0.30001464", 720 | "fraction.js": "^4.2.0", 721 | "normalize-range": "^0.1.2", 722 | "picocolors": "^1.0.0", 723 | "postcss-value-parser": "^4.2.0" 724 | }, 725 | "bin": { 726 | "autoprefixer": "bin/autoprefixer" 727 | }, 728 | "engines": { 729 | "node": "^10 || ^12 || >=14" 730 | }, 731 | "peerDependencies": { 732 | "postcss": "^8.1.0" 733 | } 734 | }, 735 | "node_modules/available-typed-arrays": { 736 | "version": "1.0.5", 737 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 738 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 739 | "engines": { 740 | "node": ">= 0.4" 741 | }, 742 | "funding": { 743 | "url": "https://github.com/sponsors/ljharb" 744 | } 745 | }, 746 | "node_modules/axe-core": { 747 | "version": "4.7.0", 748 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", 749 | "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", 750 | "engines": { 751 | "node": ">=4" 752 | } 753 | }, 754 | "node_modules/axobject-query": { 755 | "version": "3.1.1", 756 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 757 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 758 | "dependencies": { 759 | "deep-equal": "^2.0.5" 760 | } 761 | }, 762 | "node_modules/balanced-match": { 763 | "version": "1.0.2", 764 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 765 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 766 | }, 767 | "node_modules/big-integer": { 768 | "version": "1.6.51", 769 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 770 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 771 | "engines": { 772 | "node": ">=0.6" 773 | } 774 | }, 775 | "node_modules/binary-extensions": { 776 | "version": "2.2.0", 777 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 778 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 779 | "engines": { 780 | "node": ">=8" 781 | } 782 | }, 783 | "node_modules/bplist-parser": { 784 | "version": "0.2.0", 785 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 786 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 787 | "dependencies": { 788 | "big-integer": "^1.6.44" 789 | }, 790 | "engines": { 791 | "node": ">= 5.10.0" 792 | } 793 | }, 794 | "node_modules/brace-expansion": { 795 | "version": "1.1.11", 796 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 797 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 798 | "dependencies": { 799 | "balanced-match": "^1.0.0", 800 | "concat-map": "0.0.1" 801 | } 802 | }, 803 | "node_modules/braces": { 804 | "version": "3.0.2", 805 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 806 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 807 | "dependencies": { 808 | "fill-range": "^7.0.1" 809 | }, 810 | "engines": { 811 | "node": ">=8" 812 | } 813 | }, 814 | "node_modules/browserslist": { 815 | "version": "4.21.5", 816 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", 817 | "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", 818 | "funding": [ 819 | { 820 | "type": "opencollective", 821 | "url": "https://opencollective.com/browserslist" 822 | }, 823 | { 824 | "type": "tidelift", 825 | "url": "https://tidelift.com/funding/github/npm/browserslist" 826 | } 827 | ], 828 | "dependencies": { 829 | "caniuse-lite": "^1.0.30001449", 830 | "electron-to-chromium": "^1.4.284", 831 | "node-releases": "^2.0.8", 832 | "update-browserslist-db": "^1.0.10" 833 | }, 834 | "bin": { 835 | "browserslist": "cli.js" 836 | }, 837 | "engines": { 838 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 839 | } 840 | }, 841 | "node_modules/bundle-name": { 842 | "version": "3.0.0", 843 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 844 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 845 | "dependencies": { 846 | "run-applescript": "^5.0.0" 847 | }, 848 | "engines": { 849 | "node": ">=12" 850 | }, 851 | "funding": { 852 | "url": "https://github.com/sponsors/sindresorhus" 853 | } 854 | }, 855 | "node_modules/busboy": { 856 | "version": "1.6.0", 857 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 858 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 859 | "dependencies": { 860 | "streamsearch": "^1.1.0" 861 | }, 862 | "engines": { 863 | "node": ">=10.16.0" 864 | } 865 | }, 866 | "node_modules/call-bind": { 867 | "version": "1.0.2", 868 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 869 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 870 | "dependencies": { 871 | "function-bind": "^1.1.1", 872 | "get-intrinsic": "^1.0.2" 873 | }, 874 | "funding": { 875 | "url": "https://github.com/sponsors/ljharb" 876 | } 877 | }, 878 | "node_modules/callsites": { 879 | "version": "3.1.0", 880 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 881 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 882 | "engines": { 883 | "node": ">=6" 884 | } 885 | }, 886 | "node_modules/camelcase-css": { 887 | "version": "2.0.1", 888 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 889 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 890 | "engines": { 891 | "node": ">= 6" 892 | } 893 | }, 894 | "node_modules/caniuse-lite": { 895 | "version": "1.0.30001487", 896 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", 897 | "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", 898 | "funding": [ 899 | { 900 | "type": "opencollective", 901 | "url": "https://opencollective.com/browserslist" 902 | }, 903 | { 904 | "type": "tidelift", 905 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 906 | }, 907 | { 908 | "type": "github", 909 | "url": "https://github.com/sponsors/ai" 910 | } 911 | ] 912 | }, 913 | "node_modules/chalk": { 914 | "version": "4.1.2", 915 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 916 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 917 | "dependencies": { 918 | "ansi-styles": "^4.1.0", 919 | "supports-color": "^7.1.0" 920 | }, 921 | "engines": { 922 | "node": ">=10" 923 | }, 924 | "funding": { 925 | "url": "https://github.com/chalk/chalk?sponsor=1" 926 | } 927 | }, 928 | "node_modules/chokidar": { 929 | "version": "3.5.3", 930 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 931 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 932 | "funding": [ 933 | { 934 | "type": "individual", 935 | "url": "https://paulmillr.com/funding/" 936 | } 937 | ], 938 | "dependencies": { 939 | "anymatch": "~3.1.2", 940 | "braces": "~3.0.2", 941 | "glob-parent": "~5.1.2", 942 | "is-binary-path": "~2.1.0", 943 | "is-glob": "~4.0.1", 944 | "normalize-path": "~3.0.0", 945 | "readdirp": "~3.6.0" 946 | }, 947 | "engines": { 948 | "node": ">= 8.10.0" 949 | }, 950 | "optionalDependencies": { 951 | "fsevents": "~2.3.2" 952 | } 953 | }, 954 | "node_modules/chokidar/node_modules/glob-parent": { 955 | "version": "5.1.2", 956 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 957 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 958 | "dependencies": { 959 | "is-glob": "^4.0.1" 960 | }, 961 | "engines": { 962 | "node": ">= 6" 963 | } 964 | }, 965 | "node_modules/client-only": { 966 | "version": "0.0.1", 967 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 968 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 969 | }, 970 | "node_modules/color-convert": { 971 | "version": "2.0.1", 972 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 973 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 974 | "dependencies": { 975 | "color-name": "~1.1.4" 976 | }, 977 | "engines": { 978 | "node": ">=7.0.0" 979 | } 980 | }, 981 | "node_modules/color-name": { 982 | "version": "1.1.4", 983 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 984 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 985 | }, 986 | "node_modules/commander": { 987 | "version": "4.1.1", 988 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 989 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 990 | "engines": { 991 | "node": ">= 6" 992 | } 993 | }, 994 | "node_modules/concat-map": { 995 | "version": "0.0.1", 996 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 997 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 998 | }, 999 | "node_modules/cross-spawn": { 1000 | "version": "7.0.3", 1001 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1002 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1003 | "dependencies": { 1004 | "path-key": "^3.1.0", 1005 | "shebang-command": "^2.0.0", 1006 | "which": "^2.0.1" 1007 | }, 1008 | "engines": { 1009 | "node": ">= 8" 1010 | } 1011 | }, 1012 | "node_modules/cssesc": { 1013 | "version": "3.0.0", 1014 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1015 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1016 | "bin": { 1017 | "cssesc": "bin/cssesc" 1018 | }, 1019 | "engines": { 1020 | "node": ">=4" 1021 | } 1022 | }, 1023 | "node_modules/csstype": { 1024 | "version": "3.1.2", 1025 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1026 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 1027 | }, 1028 | "node_modules/damerau-levenshtein": { 1029 | "version": "1.0.8", 1030 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1031 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1032 | }, 1033 | "node_modules/debug": { 1034 | "version": "4.3.4", 1035 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1036 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1037 | "dependencies": { 1038 | "ms": "2.1.2" 1039 | }, 1040 | "engines": { 1041 | "node": ">=6.0" 1042 | }, 1043 | "peerDependenciesMeta": { 1044 | "supports-color": { 1045 | "optional": true 1046 | } 1047 | } 1048 | }, 1049 | "node_modules/deep-equal": { 1050 | "version": "2.2.1", 1051 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", 1052 | "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", 1053 | "dependencies": { 1054 | "array-buffer-byte-length": "^1.0.0", 1055 | "call-bind": "^1.0.2", 1056 | "es-get-iterator": "^1.1.3", 1057 | "get-intrinsic": "^1.2.0", 1058 | "is-arguments": "^1.1.1", 1059 | "is-array-buffer": "^3.0.2", 1060 | "is-date-object": "^1.0.5", 1061 | "is-regex": "^1.1.4", 1062 | "is-shared-array-buffer": "^1.0.2", 1063 | "isarray": "^2.0.5", 1064 | "object-is": "^1.1.5", 1065 | "object-keys": "^1.1.1", 1066 | "object.assign": "^4.1.4", 1067 | "regexp.prototype.flags": "^1.5.0", 1068 | "side-channel": "^1.0.4", 1069 | "which-boxed-primitive": "^1.0.2", 1070 | "which-collection": "^1.0.1", 1071 | "which-typed-array": "^1.1.9" 1072 | }, 1073 | "funding": { 1074 | "url": "https://github.com/sponsors/ljharb" 1075 | } 1076 | }, 1077 | "node_modules/deep-is": { 1078 | "version": "0.1.4", 1079 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1080 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1081 | }, 1082 | "node_modules/default-browser": { 1083 | "version": "4.0.0", 1084 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 1085 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 1086 | "dependencies": { 1087 | "bundle-name": "^3.0.0", 1088 | "default-browser-id": "^3.0.0", 1089 | "execa": "^7.1.1", 1090 | "titleize": "^3.0.0" 1091 | }, 1092 | "engines": { 1093 | "node": ">=14.16" 1094 | }, 1095 | "funding": { 1096 | "url": "https://github.com/sponsors/sindresorhus" 1097 | } 1098 | }, 1099 | "node_modules/default-browser-id": { 1100 | "version": "3.0.0", 1101 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 1102 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 1103 | "dependencies": { 1104 | "bplist-parser": "^0.2.0", 1105 | "untildify": "^4.0.0" 1106 | }, 1107 | "engines": { 1108 | "node": ">=12" 1109 | }, 1110 | "funding": { 1111 | "url": "https://github.com/sponsors/sindresorhus" 1112 | } 1113 | }, 1114 | "node_modules/define-lazy-prop": { 1115 | "version": "3.0.0", 1116 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 1117 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 1118 | "engines": { 1119 | "node": ">=12" 1120 | }, 1121 | "funding": { 1122 | "url": "https://github.com/sponsors/sindresorhus" 1123 | } 1124 | }, 1125 | "node_modules/define-properties": { 1126 | "version": "1.2.0", 1127 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1128 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1129 | "dependencies": { 1130 | "has-property-descriptors": "^1.0.0", 1131 | "object-keys": "^1.1.1" 1132 | }, 1133 | "engines": { 1134 | "node": ">= 0.4" 1135 | }, 1136 | "funding": { 1137 | "url": "https://github.com/sponsors/ljharb" 1138 | } 1139 | }, 1140 | "node_modules/didyoumean": { 1141 | "version": "1.2.2", 1142 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1143 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1144 | }, 1145 | "node_modules/dir-glob": { 1146 | "version": "3.0.1", 1147 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1148 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1149 | "dependencies": { 1150 | "path-type": "^4.0.0" 1151 | }, 1152 | "engines": { 1153 | "node": ">=8" 1154 | } 1155 | }, 1156 | "node_modules/dlv": { 1157 | "version": "1.1.3", 1158 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1159 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1160 | }, 1161 | "node_modules/doctrine": { 1162 | "version": "3.0.0", 1163 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1164 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1165 | "dependencies": { 1166 | "esutils": "^2.0.2" 1167 | }, 1168 | "engines": { 1169 | "node": ">=6.0.0" 1170 | } 1171 | }, 1172 | "node_modules/electron-to-chromium": { 1173 | "version": "1.4.394", 1174 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.394.tgz", 1175 | "integrity": "sha512-0IbC2cfr8w5LxTz+nmn2cJTGafsK9iauV2r5A5scfzyovqLrxuLoxOHE5OBobP3oVIggJT+0JfKnw9sm87c8Hw==" 1176 | }, 1177 | "node_modules/emoji-regex": { 1178 | "version": "9.2.2", 1179 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1180 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1181 | }, 1182 | "node_modules/enhanced-resolve": { 1183 | "version": "5.14.0", 1184 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", 1185 | "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", 1186 | "dependencies": { 1187 | "graceful-fs": "^4.2.4", 1188 | "tapable": "^2.2.0" 1189 | }, 1190 | "engines": { 1191 | "node": ">=10.13.0" 1192 | } 1193 | }, 1194 | "node_modules/es-abstract": { 1195 | "version": "1.21.2", 1196 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1197 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1198 | "dependencies": { 1199 | "array-buffer-byte-length": "^1.0.0", 1200 | "available-typed-arrays": "^1.0.5", 1201 | "call-bind": "^1.0.2", 1202 | "es-set-tostringtag": "^2.0.1", 1203 | "es-to-primitive": "^1.2.1", 1204 | "function.prototype.name": "^1.1.5", 1205 | "get-intrinsic": "^1.2.0", 1206 | "get-symbol-description": "^1.0.0", 1207 | "globalthis": "^1.0.3", 1208 | "gopd": "^1.0.1", 1209 | "has": "^1.0.3", 1210 | "has-property-descriptors": "^1.0.0", 1211 | "has-proto": "^1.0.1", 1212 | "has-symbols": "^1.0.3", 1213 | "internal-slot": "^1.0.5", 1214 | "is-array-buffer": "^3.0.2", 1215 | "is-callable": "^1.2.7", 1216 | "is-negative-zero": "^2.0.2", 1217 | "is-regex": "^1.1.4", 1218 | "is-shared-array-buffer": "^1.0.2", 1219 | "is-string": "^1.0.7", 1220 | "is-typed-array": "^1.1.10", 1221 | "is-weakref": "^1.0.2", 1222 | "object-inspect": "^1.12.3", 1223 | "object-keys": "^1.1.1", 1224 | "object.assign": "^4.1.4", 1225 | "regexp.prototype.flags": "^1.4.3", 1226 | "safe-regex-test": "^1.0.0", 1227 | "string.prototype.trim": "^1.2.7", 1228 | "string.prototype.trimend": "^1.0.6", 1229 | "string.prototype.trimstart": "^1.0.6", 1230 | "typed-array-length": "^1.0.4", 1231 | "unbox-primitive": "^1.0.2", 1232 | "which-typed-array": "^1.1.9" 1233 | }, 1234 | "engines": { 1235 | "node": ">= 0.4" 1236 | }, 1237 | "funding": { 1238 | "url": "https://github.com/sponsors/ljharb" 1239 | } 1240 | }, 1241 | "node_modules/es-get-iterator": { 1242 | "version": "1.1.3", 1243 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1244 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1245 | "dependencies": { 1246 | "call-bind": "^1.0.2", 1247 | "get-intrinsic": "^1.1.3", 1248 | "has-symbols": "^1.0.3", 1249 | "is-arguments": "^1.1.1", 1250 | "is-map": "^2.0.2", 1251 | "is-set": "^2.0.2", 1252 | "is-string": "^1.0.7", 1253 | "isarray": "^2.0.5", 1254 | "stop-iteration-iterator": "^1.0.0" 1255 | }, 1256 | "funding": { 1257 | "url": "https://github.com/sponsors/ljharb" 1258 | } 1259 | }, 1260 | "node_modules/es-set-tostringtag": { 1261 | "version": "2.0.1", 1262 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1263 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1264 | "dependencies": { 1265 | "get-intrinsic": "^1.1.3", 1266 | "has": "^1.0.3", 1267 | "has-tostringtag": "^1.0.0" 1268 | }, 1269 | "engines": { 1270 | "node": ">= 0.4" 1271 | } 1272 | }, 1273 | "node_modules/es-shim-unscopables": { 1274 | "version": "1.0.0", 1275 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1276 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1277 | "dependencies": { 1278 | "has": "^1.0.3" 1279 | } 1280 | }, 1281 | "node_modules/es-to-primitive": { 1282 | "version": "1.2.1", 1283 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1284 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1285 | "dependencies": { 1286 | "is-callable": "^1.1.4", 1287 | "is-date-object": "^1.0.1", 1288 | "is-symbol": "^1.0.2" 1289 | }, 1290 | "engines": { 1291 | "node": ">= 0.4" 1292 | }, 1293 | "funding": { 1294 | "url": "https://github.com/sponsors/ljharb" 1295 | } 1296 | }, 1297 | "node_modules/escalade": { 1298 | "version": "3.1.1", 1299 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1300 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1301 | "engines": { 1302 | "node": ">=6" 1303 | } 1304 | }, 1305 | "node_modules/escape-string-regexp": { 1306 | "version": "4.0.0", 1307 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1308 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1309 | "engines": { 1310 | "node": ">=10" 1311 | }, 1312 | "funding": { 1313 | "url": "https://github.com/sponsors/sindresorhus" 1314 | } 1315 | }, 1316 | "node_modules/eslint": { 1317 | "version": "8.40.0", 1318 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.40.0.tgz", 1319 | "integrity": "sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ==", 1320 | "dependencies": { 1321 | "@eslint-community/eslint-utils": "^4.2.0", 1322 | "@eslint-community/regexpp": "^4.4.0", 1323 | "@eslint/eslintrc": "^2.0.3", 1324 | "@eslint/js": "8.40.0", 1325 | "@humanwhocodes/config-array": "^0.11.8", 1326 | "@humanwhocodes/module-importer": "^1.0.1", 1327 | "@nodelib/fs.walk": "^1.2.8", 1328 | "ajv": "^6.10.0", 1329 | "chalk": "^4.0.0", 1330 | "cross-spawn": "^7.0.2", 1331 | "debug": "^4.3.2", 1332 | "doctrine": "^3.0.0", 1333 | "escape-string-regexp": "^4.0.0", 1334 | "eslint-scope": "^7.2.0", 1335 | "eslint-visitor-keys": "^3.4.1", 1336 | "espree": "^9.5.2", 1337 | "esquery": "^1.4.2", 1338 | "esutils": "^2.0.2", 1339 | "fast-deep-equal": "^3.1.3", 1340 | "file-entry-cache": "^6.0.1", 1341 | "find-up": "^5.0.0", 1342 | "glob-parent": "^6.0.2", 1343 | "globals": "^13.19.0", 1344 | "grapheme-splitter": "^1.0.4", 1345 | "ignore": "^5.2.0", 1346 | "import-fresh": "^3.0.0", 1347 | "imurmurhash": "^0.1.4", 1348 | "is-glob": "^4.0.0", 1349 | "is-path-inside": "^3.0.3", 1350 | "js-sdsl": "^4.1.4", 1351 | "js-yaml": "^4.1.0", 1352 | "json-stable-stringify-without-jsonify": "^1.0.1", 1353 | "levn": "^0.4.1", 1354 | "lodash.merge": "^4.6.2", 1355 | "minimatch": "^3.1.2", 1356 | "natural-compare": "^1.4.0", 1357 | "optionator": "^0.9.1", 1358 | "strip-ansi": "^6.0.1", 1359 | "strip-json-comments": "^3.1.0", 1360 | "text-table": "^0.2.0" 1361 | }, 1362 | "bin": { 1363 | "eslint": "bin/eslint.js" 1364 | }, 1365 | "engines": { 1366 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1367 | }, 1368 | "funding": { 1369 | "url": "https://opencollective.com/eslint" 1370 | } 1371 | }, 1372 | "node_modules/eslint-config-next": { 1373 | "version": "13.4.2", 1374 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.2.tgz", 1375 | "integrity": "sha512-zjLJ9B9bbeWSo5q+iHfdt8gVYyT+y2BpWDfjR6XMBtFRSMKRGjllDKxnuKBV1q2Y/QpwLM2PXHJTMRyblCmRAg==", 1376 | "dependencies": { 1377 | "@next/eslint-plugin-next": "13.4.2", 1378 | "@rushstack/eslint-patch": "^1.1.3", 1379 | "@typescript-eslint/parser": "^5.42.0", 1380 | "eslint-import-resolver-node": "^0.3.6", 1381 | "eslint-import-resolver-typescript": "^3.5.2", 1382 | "eslint-plugin-import": "^2.26.0", 1383 | "eslint-plugin-jsx-a11y": "^6.5.1", 1384 | "eslint-plugin-react": "^7.31.7", 1385 | "eslint-plugin-react-hooks": "^4.5.0" 1386 | }, 1387 | "peerDependencies": { 1388 | "eslint": "^7.23.0 || ^8.0.0", 1389 | "typescript": ">=3.3.1" 1390 | }, 1391 | "peerDependenciesMeta": { 1392 | "typescript": { 1393 | "optional": true 1394 | } 1395 | } 1396 | }, 1397 | "node_modules/eslint-import-resolver-node": { 1398 | "version": "0.3.7", 1399 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1400 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1401 | "dependencies": { 1402 | "debug": "^3.2.7", 1403 | "is-core-module": "^2.11.0", 1404 | "resolve": "^1.22.1" 1405 | } 1406 | }, 1407 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1408 | "version": "3.2.7", 1409 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1410 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1411 | "dependencies": { 1412 | "ms": "^2.1.1" 1413 | } 1414 | }, 1415 | "node_modules/eslint-import-resolver-typescript": { 1416 | "version": "3.5.5", 1417 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1418 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1419 | "dependencies": { 1420 | "debug": "^4.3.4", 1421 | "enhanced-resolve": "^5.12.0", 1422 | "eslint-module-utils": "^2.7.4", 1423 | "get-tsconfig": "^4.5.0", 1424 | "globby": "^13.1.3", 1425 | "is-core-module": "^2.11.0", 1426 | "is-glob": "^4.0.3", 1427 | "synckit": "^0.8.5" 1428 | }, 1429 | "engines": { 1430 | "node": "^14.18.0 || >=16.0.0" 1431 | }, 1432 | "funding": { 1433 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1434 | }, 1435 | "peerDependencies": { 1436 | "eslint": "*", 1437 | "eslint-plugin-import": "*" 1438 | } 1439 | }, 1440 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1441 | "version": "13.1.4", 1442 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1443 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1444 | "dependencies": { 1445 | "dir-glob": "^3.0.1", 1446 | "fast-glob": "^3.2.11", 1447 | "ignore": "^5.2.0", 1448 | "merge2": "^1.4.1", 1449 | "slash": "^4.0.0" 1450 | }, 1451 | "engines": { 1452 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1453 | }, 1454 | "funding": { 1455 | "url": "https://github.com/sponsors/sindresorhus" 1456 | } 1457 | }, 1458 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1459 | "version": "4.0.0", 1460 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1461 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1462 | "engines": { 1463 | "node": ">=12" 1464 | }, 1465 | "funding": { 1466 | "url": "https://github.com/sponsors/sindresorhus" 1467 | } 1468 | }, 1469 | "node_modules/eslint-module-utils": { 1470 | "version": "2.8.0", 1471 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1472 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1473 | "dependencies": { 1474 | "debug": "^3.2.7" 1475 | }, 1476 | "engines": { 1477 | "node": ">=4" 1478 | }, 1479 | "peerDependenciesMeta": { 1480 | "eslint": { 1481 | "optional": true 1482 | } 1483 | } 1484 | }, 1485 | "node_modules/eslint-module-utils/node_modules/debug": { 1486 | "version": "3.2.7", 1487 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1488 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1489 | "dependencies": { 1490 | "ms": "^2.1.1" 1491 | } 1492 | }, 1493 | "node_modules/eslint-plugin-import": { 1494 | "version": "2.27.5", 1495 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1496 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1497 | "dependencies": { 1498 | "array-includes": "^3.1.6", 1499 | "array.prototype.flat": "^1.3.1", 1500 | "array.prototype.flatmap": "^1.3.1", 1501 | "debug": "^3.2.7", 1502 | "doctrine": "^2.1.0", 1503 | "eslint-import-resolver-node": "^0.3.7", 1504 | "eslint-module-utils": "^2.7.4", 1505 | "has": "^1.0.3", 1506 | "is-core-module": "^2.11.0", 1507 | "is-glob": "^4.0.3", 1508 | "minimatch": "^3.1.2", 1509 | "object.values": "^1.1.6", 1510 | "resolve": "^1.22.1", 1511 | "semver": "^6.3.0", 1512 | "tsconfig-paths": "^3.14.1" 1513 | }, 1514 | "engines": { 1515 | "node": ">=4" 1516 | }, 1517 | "peerDependencies": { 1518 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1519 | } 1520 | }, 1521 | "node_modules/eslint-plugin-import/node_modules/debug": { 1522 | "version": "3.2.7", 1523 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1524 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1525 | "dependencies": { 1526 | "ms": "^2.1.1" 1527 | } 1528 | }, 1529 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1530 | "version": "2.1.0", 1531 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1532 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1533 | "dependencies": { 1534 | "esutils": "^2.0.2" 1535 | }, 1536 | "engines": { 1537 | "node": ">=0.10.0" 1538 | } 1539 | }, 1540 | "node_modules/eslint-plugin-import/node_modules/semver": { 1541 | "version": "6.3.0", 1542 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1543 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1544 | "bin": { 1545 | "semver": "bin/semver.js" 1546 | } 1547 | }, 1548 | "node_modules/eslint-plugin-jsx-a11y": { 1549 | "version": "6.7.1", 1550 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1551 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1552 | "dependencies": { 1553 | "@babel/runtime": "^7.20.7", 1554 | "aria-query": "^5.1.3", 1555 | "array-includes": "^3.1.6", 1556 | "array.prototype.flatmap": "^1.3.1", 1557 | "ast-types-flow": "^0.0.7", 1558 | "axe-core": "^4.6.2", 1559 | "axobject-query": "^3.1.1", 1560 | "damerau-levenshtein": "^1.0.8", 1561 | "emoji-regex": "^9.2.2", 1562 | "has": "^1.0.3", 1563 | "jsx-ast-utils": "^3.3.3", 1564 | "language-tags": "=1.0.5", 1565 | "minimatch": "^3.1.2", 1566 | "object.entries": "^1.1.6", 1567 | "object.fromentries": "^2.0.6", 1568 | "semver": "^6.3.0" 1569 | }, 1570 | "engines": { 1571 | "node": ">=4.0" 1572 | }, 1573 | "peerDependencies": { 1574 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1575 | } 1576 | }, 1577 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1578 | "version": "6.3.0", 1579 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1580 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1581 | "bin": { 1582 | "semver": "bin/semver.js" 1583 | } 1584 | }, 1585 | "node_modules/eslint-plugin-react": { 1586 | "version": "7.32.2", 1587 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1588 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1589 | "dependencies": { 1590 | "array-includes": "^3.1.6", 1591 | "array.prototype.flatmap": "^1.3.1", 1592 | "array.prototype.tosorted": "^1.1.1", 1593 | "doctrine": "^2.1.0", 1594 | "estraverse": "^5.3.0", 1595 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1596 | "minimatch": "^3.1.2", 1597 | "object.entries": "^1.1.6", 1598 | "object.fromentries": "^2.0.6", 1599 | "object.hasown": "^1.1.2", 1600 | "object.values": "^1.1.6", 1601 | "prop-types": "^15.8.1", 1602 | "resolve": "^2.0.0-next.4", 1603 | "semver": "^6.3.0", 1604 | "string.prototype.matchall": "^4.0.8" 1605 | }, 1606 | "engines": { 1607 | "node": ">=4" 1608 | }, 1609 | "peerDependencies": { 1610 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1611 | } 1612 | }, 1613 | "node_modules/eslint-plugin-react-hooks": { 1614 | "version": "4.6.0", 1615 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1616 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1617 | "engines": { 1618 | "node": ">=10" 1619 | }, 1620 | "peerDependencies": { 1621 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1622 | } 1623 | }, 1624 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1625 | "version": "2.1.0", 1626 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1627 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1628 | "dependencies": { 1629 | "esutils": "^2.0.2" 1630 | }, 1631 | "engines": { 1632 | "node": ">=0.10.0" 1633 | } 1634 | }, 1635 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1636 | "version": "2.0.0-next.4", 1637 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1638 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1639 | "dependencies": { 1640 | "is-core-module": "^2.9.0", 1641 | "path-parse": "^1.0.7", 1642 | "supports-preserve-symlinks-flag": "^1.0.0" 1643 | }, 1644 | "bin": { 1645 | "resolve": "bin/resolve" 1646 | }, 1647 | "funding": { 1648 | "url": "https://github.com/sponsors/ljharb" 1649 | } 1650 | }, 1651 | "node_modules/eslint-plugin-react/node_modules/semver": { 1652 | "version": "6.3.0", 1653 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1654 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1655 | "bin": { 1656 | "semver": "bin/semver.js" 1657 | } 1658 | }, 1659 | "node_modules/eslint-scope": { 1660 | "version": "7.2.0", 1661 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1662 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1663 | "dependencies": { 1664 | "esrecurse": "^4.3.0", 1665 | "estraverse": "^5.2.0" 1666 | }, 1667 | "engines": { 1668 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1669 | }, 1670 | "funding": { 1671 | "url": "https://opencollective.com/eslint" 1672 | } 1673 | }, 1674 | "node_modules/eslint-visitor-keys": { 1675 | "version": "3.4.1", 1676 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1677 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1678 | "engines": { 1679 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1680 | }, 1681 | "funding": { 1682 | "url": "https://opencollective.com/eslint" 1683 | } 1684 | }, 1685 | "node_modules/espree": { 1686 | "version": "9.5.2", 1687 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1688 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1689 | "dependencies": { 1690 | "acorn": "^8.8.0", 1691 | "acorn-jsx": "^5.3.2", 1692 | "eslint-visitor-keys": "^3.4.1" 1693 | }, 1694 | "engines": { 1695 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1696 | }, 1697 | "funding": { 1698 | "url": "https://opencollective.com/eslint" 1699 | } 1700 | }, 1701 | "node_modules/esquery": { 1702 | "version": "1.5.0", 1703 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1704 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1705 | "dependencies": { 1706 | "estraverse": "^5.1.0" 1707 | }, 1708 | "engines": { 1709 | "node": ">=0.10" 1710 | } 1711 | }, 1712 | "node_modules/esrecurse": { 1713 | "version": "4.3.0", 1714 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1715 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1716 | "dependencies": { 1717 | "estraverse": "^5.2.0" 1718 | }, 1719 | "engines": { 1720 | "node": ">=4.0" 1721 | } 1722 | }, 1723 | "node_modules/estraverse": { 1724 | "version": "5.3.0", 1725 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1726 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1727 | "engines": { 1728 | "node": ">=4.0" 1729 | } 1730 | }, 1731 | "node_modules/esutils": { 1732 | "version": "2.0.3", 1733 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1734 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1735 | "engines": { 1736 | "node": ">=0.10.0" 1737 | } 1738 | }, 1739 | "node_modules/execa": { 1740 | "version": "7.1.1", 1741 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1742 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1743 | "dependencies": { 1744 | "cross-spawn": "^7.0.3", 1745 | "get-stream": "^6.0.1", 1746 | "human-signals": "^4.3.0", 1747 | "is-stream": "^3.0.0", 1748 | "merge-stream": "^2.0.0", 1749 | "npm-run-path": "^5.1.0", 1750 | "onetime": "^6.0.0", 1751 | "signal-exit": "^3.0.7", 1752 | "strip-final-newline": "^3.0.0" 1753 | }, 1754 | "engines": { 1755 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1756 | }, 1757 | "funding": { 1758 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1759 | } 1760 | }, 1761 | "node_modules/fast-deep-equal": { 1762 | "version": "3.1.3", 1763 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1764 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1765 | }, 1766 | "node_modules/fast-glob": { 1767 | "version": "3.2.12", 1768 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1769 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1770 | "dependencies": { 1771 | "@nodelib/fs.stat": "^2.0.2", 1772 | "@nodelib/fs.walk": "^1.2.3", 1773 | "glob-parent": "^5.1.2", 1774 | "merge2": "^1.3.0", 1775 | "micromatch": "^4.0.4" 1776 | }, 1777 | "engines": { 1778 | "node": ">=8.6.0" 1779 | } 1780 | }, 1781 | "node_modules/fast-glob/node_modules/glob-parent": { 1782 | "version": "5.1.2", 1783 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1784 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1785 | "dependencies": { 1786 | "is-glob": "^4.0.1" 1787 | }, 1788 | "engines": { 1789 | "node": ">= 6" 1790 | } 1791 | }, 1792 | "node_modules/fast-json-stable-stringify": { 1793 | "version": "2.1.0", 1794 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1795 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1796 | }, 1797 | "node_modules/fast-levenshtein": { 1798 | "version": "2.0.6", 1799 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1800 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1801 | }, 1802 | "node_modules/fastq": { 1803 | "version": "1.15.0", 1804 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1805 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1806 | "dependencies": { 1807 | "reusify": "^1.0.4" 1808 | } 1809 | }, 1810 | "node_modules/file-entry-cache": { 1811 | "version": "6.0.1", 1812 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1813 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1814 | "dependencies": { 1815 | "flat-cache": "^3.0.4" 1816 | }, 1817 | "engines": { 1818 | "node": "^10.12.0 || >=12.0.0" 1819 | } 1820 | }, 1821 | "node_modules/fill-range": { 1822 | "version": "7.0.1", 1823 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1824 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1825 | "dependencies": { 1826 | "to-regex-range": "^5.0.1" 1827 | }, 1828 | "engines": { 1829 | "node": ">=8" 1830 | } 1831 | }, 1832 | "node_modules/find-up": { 1833 | "version": "5.0.0", 1834 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1835 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1836 | "dependencies": { 1837 | "locate-path": "^6.0.0", 1838 | "path-exists": "^4.0.0" 1839 | }, 1840 | "engines": { 1841 | "node": ">=10" 1842 | }, 1843 | "funding": { 1844 | "url": "https://github.com/sponsors/sindresorhus" 1845 | } 1846 | }, 1847 | "node_modules/flat-cache": { 1848 | "version": "3.0.4", 1849 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1850 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1851 | "dependencies": { 1852 | "flatted": "^3.1.0", 1853 | "rimraf": "^3.0.2" 1854 | }, 1855 | "engines": { 1856 | "node": "^10.12.0 || >=12.0.0" 1857 | } 1858 | }, 1859 | "node_modules/flatted": { 1860 | "version": "3.2.7", 1861 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1862 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1863 | }, 1864 | "node_modules/for-each": { 1865 | "version": "0.3.3", 1866 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1867 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1868 | "dependencies": { 1869 | "is-callable": "^1.1.3" 1870 | } 1871 | }, 1872 | "node_modules/fraction.js": { 1873 | "version": "4.2.0", 1874 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1875 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1876 | "engines": { 1877 | "node": "*" 1878 | }, 1879 | "funding": { 1880 | "type": "patreon", 1881 | "url": "https://www.patreon.com/infusion" 1882 | } 1883 | }, 1884 | "node_modules/fs.realpath": { 1885 | "version": "1.0.0", 1886 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1887 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1888 | }, 1889 | "node_modules/fsevents": { 1890 | "version": "2.3.2", 1891 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1892 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1893 | "hasInstallScript": true, 1894 | "optional": true, 1895 | "os": [ 1896 | "darwin" 1897 | ], 1898 | "engines": { 1899 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1900 | } 1901 | }, 1902 | "node_modules/function-bind": { 1903 | "version": "1.1.1", 1904 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1905 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1906 | }, 1907 | "node_modules/function.prototype.name": { 1908 | "version": "1.1.5", 1909 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1910 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1911 | "dependencies": { 1912 | "call-bind": "^1.0.2", 1913 | "define-properties": "^1.1.3", 1914 | "es-abstract": "^1.19.0", 1915 | "functions-have-names": "^1.2.2" 1916 | }, 1917 | "engines": { 1918 | "node": ">= 0.4" 1919 | }, 1920 | "funding": { 1921 | "url": "https://github.com/sponsors/ljharb" 1922 | } 1923 | }, 1924 | "node_modules/functions-have-names": { 1925 | "version": "1.2.3", 1926 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1927 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1928 | "funding": { 1929 | "url": "https://github.com/sponsors/ljharb" 1930 | } 1931 | }, 1932 | "node_modules/get-intrinsic": { 1933 | "version": "1.2.1", 1934 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 1935 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 1936 | "dependencies": { 1937 | "function-bind": "^1.1.1", 1938 | "has": "^1.0.3", 1939 | "has-proto": "^1.0.1", 1940 | "has-symbols": "^1.0.3" 1941 | }, 1942 | "funding": { 1943 | "url": "https://github.com/sponsors/ljharb" 1944 | } 1945 | }, 1946 | "node_modules/get-stream": { 1947 | "version": "6.0.1", 1948 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1949 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1950 | "engines": { 1951 | "node": ">=10" 1952 | }, 1953 | "funding": { 1954 | "url": "https://github.com/sponsors/sindresorhus" 1955 | } 1956 | }, 1957 | "node_modules/get-symbol-description": { 1958 | "version": "1.0.0", 1959 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1960 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1961 | "dependencies": { 1962 | "call-bind": "^1.0.2", 1963 | "get-intrinsic": "^1.1.1" 1964 | }, 1965 | "engines": { 1966 | "node": ">= 0.4" 1967 | }, 1968 | "funding": { 1969 | "url": "https://github.com/sponsors/ljharb" 1970 | } 1971 | }, 1972 | "node_modules/get-tsconfig": { 1973 | "version": "4.5.0", 1974 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.5.0.tgz", 1975 | "integrity": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==", 1976 | "funding": { 1977 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1978 | } 1979 | }, 1980 | "node_modules/glob": { 1981 | "version": "7.1.7", 1982 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1983 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1984 | "dependencies": { 1985 | "fs.realpath": "^1.0.0", 1986 | "inflight": "^1.0.4", 1987 | "inherits": "2", 1988 | "minimatch": "^3.0.4", 1989 | "once": "^1.3.0", 1990 | "path-is-absolute": "^1.0.0" 1991 | }, 1992 | "engines": { 1993 | "node": "*" 1994 | }, 1995 | "funding": { 1996 | "url": "https://github.com/sponsors/isaacs" 1997 | } 1998 | }, 1999 | "node_modules/glob-parent": { 2000 | "version": "6.0.2", 2001 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2002 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2003 | "dependencies": { 2004 | "is-glob": "^4.0.3" 2005 | }, 2006 | "engines": { 2007 | "node": ">=10.13.0" 2008 | } 2009 | }, 2010 | "node_modules/globals": { 2011 | "version": "13.20.0", 2012 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2013 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2014 | "dependencies": { 2015 | "type-fest": "^0.20.2" 2016 | }, 2017 | "engines": { 2018 | "node": ">=8" 2019 | }, 2020 | "funding": { 2021 | "url": "https://github.com/sponsors/sindresorhus" 2022 | } 2023 | }, 2024 | "node_modules/globalthis": { 2025 | "version": "1.0.3", 2026 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2027 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2028 | "dependencies": { 2029 | "define-properties": "^1.1.3" 2030 | }, 2031 | "engines": { 2032 | "node": ">= 0.4" 2033 | }, 2034 | "funding": { 2035 | "url": "https://github.com/sponsors/ljharb" 2036 | } 2037 | }, 2038 | "node_modules/globby": { 2039 | "version": "11.1.0", 2040 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2041 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2042 | "dependencies": { 2043 | "array-union": "^2.1.0", 2044 | "dir-glob": "^3.0.1", 2045 | "fast-glob": "^3.2.9", 2046 | "ignore": "^5.2.0", 2047 | "merge2": "^1.4.1", 2048 | "slash": "^3.0.0" 2049 | }, 2050 | "engines": { 2051 | "node": ">=10" 2052 | }, 2053 | "funding": { 2054 | "url": "https://github.com/sponsors/sindresorhus" 2055 | } 2056 | }, 2057 | "node_modules/gopd": { 2058 | "version": "1.0.1", 2059 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2060 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2061 | "dependencies": { 2062 | "get-intrinsic": "^1.1.3" 2063 | }, 2064 | "funding": { 2065 | "url": "https://github.com/sponsors/ljharb" 2066 | } 2067 | }, 2068 | "node_modules/graceful-fs": { 2069 | "version": "4.2.11", 2070 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2071 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2072 | }, 2073 | "node_modules/grapheme-splitter": { 2074 | "version": "1.0.4", 2075 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 2076 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" 2077 | }, 2078 | "node_modules/has": { 2079 | "version": "1.0.3", 2080 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2081 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2082 | "dependencies": { 2083 | "function-bind": "^1.1.1" 2084 | }, 2085 | "engines": { 2086 | "node": ">= 0.4.0" 2087 | } 2088 | }, 2089 | "node_modules/has-bigints": { 2090 | "version": "1.0.2", 2091 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2092 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2093 | "funding": { 2094 | "url": "https://github.com/sponsors/ljharb" 2095 | } 2096 | }, 2097 | "node_modules/has-flag": { 2098 | "version": "4.0.0", 2099 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2100 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2101 | "engines": { 2102 | "node": ">=8" 2103 | } 2104 | }, 2105 | "node_modules/has-property-descriptors": { 2106 | "version": "1.0.0", 2107 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2108 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2109 | "dependencies": { 2110 | "get-intrinsic": "^1.1.1" 2111 | }, 2112 | "funding": { 2113 | "url": "https://github.com/sponsors/ljharb" 2114 | } 2115 | }, 2116 | "node_modules/has-proto": { 2117 | "version": "1.0.1", 2118 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2119 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2120 | "engines": { 2121 | "node": ">= 0.4" 2122 | }, 2123 | "funding": { 2124 | "url": "https://github.com/sponsors/ljharb" 2125 | } 2126 | }, 2127 | "node_modules/has-symbols": { 2128 | "version": "1.0.3", 2129 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2130 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2131 | "engines": { 2132 | "node": ">= 0.4" 2133 | }, 2134 | "funding": { 2135 | "url": "https://github.com/sponsors/ljharb" 2136 | } 2137 | }, 2138 | "node_modules/has-tostringtag": { 2139 | "version": "1.0.0", 2140 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2141 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2142 | "dependencies": { 2143 | "has-symbols": "^1.0.2" 2144 | }, 2145 | "engines": { 2146 | "node": ">= 0.4" 2147 | }, 2148 | "funding": { 2149 | "url": "https://github.com/sponsors/ljharb" 2150 | } 2151 | }, 2152 | "node_modules/human-signals": { 2153 | "version": "4.3.1", 2154 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2155 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2156 | "engines": { 2157 | "node": ">=14.18.0" 2158 | } 2159 | }, 2160 | "node_modules/ignore": { 2161 | "version": "5.2.4", 2162 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2163 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2164 | "engines": { 2165 | "node": ">= 4" 2166 | } 2167 | }, 2168 | "node_modules/import-fresh": { 2169 | "version": "3.3.0", 2170 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2171 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2172 | "dependencies": { 2173 | "parent-module": "^1.0.0", 2174 | "resolve-from": "^4.0.0" 2175 | }, 2176 | "engines": { 2177 | "node": ">=6" 2178 | }, 2179 | "funding": { 2180 | "url": "https://github.com/sponsors/sindresorhus" 2181 | } 2182 | }, 2183 | "node_modules/imurmurhash": { 2184 | "version": "0.1.4", 2185 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2186 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2187 | "engines": { 2188 | "node": ">=0.8.19" 2189 | } 2190 | }, 2191 | "node_modules/inflight": { 2192 | "version": "1.0.6", 2193 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2194 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2195 | "dependencies": { 2196 | "once": "^1.3.0", 2197 | "wrappy": "1" 2198 | } 2199 | }, 2200 | "node_modules/inherits": { 2201 | "version": "2.0.4", 2202 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2203 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2204 | }, 2205 | "node_modules/internal-slot": { 2206 | "version": "1.0.5", 2207 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2208 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2209 | "dependencies": { 2210 | "get-intrinsic": "^1.2.0", 2211 | "has": "^1.0.3", 2212 | "side-channel": "^1.0.4" 2213 | }, 2214 | "engines": { 2215 | "node": ">= 0.4" 2216 | } 2217 | }, 2218 | "node_modules/is-arguments": { 2219 | "version": "1.1.1", 2220 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2221 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2222 | "dependencies": { 2223 | "call-bind": "^1.0.2", 2224 | "has-tostringtag": "^1.0.0" 2225 | }, 2226 | "engines": { 2227 | "node": ">= 0.4" 2228 | }, 2229 | "funding": { 2230 | "url": "https://github.com/sponsors/ljharb" 2231 | } 2232 | }, 2233 | "node_modules/is-array-buffer": { 2234 | "version": "3.0.2", 2235 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2236 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2237 | "dependencies": { 2238 | "call-bind": "^1.0.2", 2239 | "get-intrinsic": "^1.2.0", 2240 | "is-typed-array": "^1.1.10" 2241 | }, 2242 | "funding": { 2243 | "url": "https://github.com/sponsors/ljharb" 2244 | } 2245 | }, 2246 | "node_modules/is-bigint": { 2247 | "version": "1.0.4", 2248 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2249 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2250 | "dependencies": { 2251 | "has-bigints": "^1.0.1" 2252 | }, 2253 | "funding": { 2254 | "url": "https://github.com/sponsors/ljharb" 2255 | } 2256 | }, 2257 | "node_modules/is-binary-path": { 2258 | "version": "2.1.0", 2259 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2260 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2261 | "dependencies": { 2262 | "binary-extensions": "^2.0.0" 2263 | }, 2264 | "engines": { 2265 | "node": ">=8" 2266 | } 2267 | }, 2268 | "node_modules/is-boolean-object": { 2269 | "version": "1.1.2", 2270 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2271 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2272 | "dependencies": { 2273 | "call-bind": "^1.0.2", 2274 | "has-tostringtag": "^1.0.0" 2275 | }, 2276 | "engines": { 2277 | "node": ">= 0.4" 2278 | }, 2279 | "funding": { 2280 | "url": "https://github.com/sponsors/ljharb" 2281 | } 2282 | }, 2283 | "node_modules/is-callable": { 2284 | "version": "1.2.7", 2285 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2286 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2287 | "engines": { 2288 | "node": ">= 0.4" 2289 | }, 2290 | "funding": { 2291 | "url": "https://github.com/sponsors/ljharb" 2292 | } 2293 | }, 2294 | "node_modules/is-core-module": { 2295 | "version": "2.12.0", 2296 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", 2297 | "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", 2298 | "dependencies": { 2299 | "has": "^1.0.3" 2300 | }, 2301 | "funding": { 2302 | "url": "https://github.com/sponsors/ljharb" 2303 | } 2304 | }, 2305 | "node_modules/is-date-object": { 2306 | "version": "1.0.5", 2307 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2308 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2309 | "dependencies": { 2310 | "has-tostringtag": "^1.0.0" 2311 | }, 2312 | "engines": { 2313 | "node": ">= 0.4" 2314 | }, 2315 | "funding": { 2316 | "url": "https://github.com/sponsors/ljharb" 2317 | } 2318 | }, 2319 | "node_modules/is-docker": { 2320 | "version": "3.0.0", 2321 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2322 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2323 | "bin": { 2324 | "is-docker": "cli.js" 2325 | }, 2326 | "engines": { 2327 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2328 | }, 2329 | "funding": { 2330 | "url": "https://github.com/sponsors/sindresorhus" 2331 | } 2332 | }, 2333 | "node_modules/is-extglob": { 2334 | "version": "2.1.1", 2335 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2336 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2337 | "engines": { 2338 | "node": ">=0.10.0" 2339 | } 2340 | }, 2341 | "node_modules/is-glob": { 2342 | "version": "4.0.3", 2343 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2344 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2345 | "dependencies": { 2346 | "is-extglob": "^2.1.1" 2347 | }, 2348 | "engines": { 2349 | "node": ">=0.10.0" 2350 | } 2351 | }, 2352 | "node_modules/is-inside-container": { 2353 | "version": "1.0.0", 2354 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2355 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2356 | "dependencies": { 2357 | "is-docker": "^3.0.0" 2358 | }, 2359 | "bin": { 2360 | "is-inside-container": "cli.js" 2361 | }, 2362 | "engines": { 2363 | "node": ">=14.16" 2364 | }, 2365 | "funding": { 2366 | "url": "https://github.com/sponsors/sindresorhus" 2367 | } 2368 | }, 2369 | "node_modules/is-map": { 2370 | "version": "2.0.2", 2371 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2372 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2373 | "funding": { 2374 | "url": "https://github.com/sponsors/ljharb" 2375 | } 2376 | }, 2377 | "node_modules/is-negative-zero": { 2378 | "version": "2.0.2", 2379 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2380 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2381 | "engines": { 2382 | "node": ">= 0.4" 2383 | }, 2384 | "funding": { 2385 | "url": "https://github.com/sponsors/ljharb" 2386 | } 2387 | }, 2388 | "node_modules/is-number": { 2389 | "version": "7.0.0", 2390 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2391 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2392 | "engines": { 2393 | "node": ">=0.12.0" 2394 | } 2395 | }, 2396 | "node_modules/is-number-object": { 2397 | "version": "1.0.7", 2398 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2399 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2400 | "dependencies": { 2401 | "has-tostringtag": "^1.0.0" 2402 | }, 2403 | "engines": { 2404 | "node": ">= 0.4" 2405 | }, 2406 | "funding": { 2407 | "url": "https://github.com/sponsors/ljharb" 2408 | } 2409 | }, 2410 | "node_modules/is-path-inside": { 2411 | "version": "3.0.3", 2412 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2413 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2414 | "engines": { 2415 | "node": ">=8" 2416 | } 2417 | }, 2418 | "node_modules/is-regex": { 2419 | "version": "1.1.4", 2420 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2421 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2422 | "dependencies": { 2423 | "call-bind": "^1.0.2", 2424 | "has-tostringtag": "^1.0.0" 2425 | }, 2426 | "engines": { 2427 | "node": ">= 0.4" 2428 | }, 2429 | "funding": { 2430 | "url": "https://github.com/sponsors/ljharb" 2431 | } 2432 | }, 2433 | "node_modules/is-set": { 2434 | "version": "2.0.2", 2435 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2436 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2437 | "funding": { 2438 | "url": "https://github.com/sponsors/ljharb" 2439 | } 2440 | }, 2441 | "node_modules/is-shared-array-buffer": { 2442 | "version": "1.0.2", 2443 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2444 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2445 | "dependencies": { 2446 | "call-bind": "^1.0.2" 2447 | }, 2448 | "funding": { 2449 | "url": "https://github.com/sponsors/ljharb" 2450 | } 2451 | }, 2452 | "node_modules/is-stream": { 2453 | "version": "3.0.0", 2454 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2455 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2456 | "engines": { 2457 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2458 | }, 2459 | "funding": { 2460 | "url": "https://github.com/sponsors/sindresorhus" 2461 | } 2462 | }, 2463 | "node_modules/is-string": { 2464 | "version": "1.0.7", 2465 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2466 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2467 | "dependencies": { 2468 | "has-tostringtag": "^1.0.0" 2469 | }, 2470 | "engines": { 2471 | "node": ">= 0.4" 2472 | }, 2473 | "funding": { 2474 | "url": "https://github.com/sponsors/ljharb" 2475 | } 2476 | }, 2477 | "node_modules/is-symbol": { 2478 | "version": "1.0.4", 2479 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2480 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2481 | "dependencies": { 2482 | "has-symbols": "^1.0.2" 2483 | }, 2484 | "engines": { 2485 | "node": ">= 0.4" 2486 | }, 2487 | "funding": { 2488 | "url": "https://github.com/sponsors/ljharb" 2489 | } 2490 | }, 2491 | "node_modules/is-typed-array": { 2492 | "version": "1.1.10", 2493 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2494 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2495 | "dependencies": { 2496 | "available-typed-arrays": "^1.0.5", 2497 | "call-bind": "^1.0.2", 2498 | "for-each": "^0.3.3", 2499 | "gopd": "^1.0.1", 2500 | "has-tostringtag": "^1.0.0" 2501 | }, 2502 | "engines": { 2503 | "node": ">= 0.4" 2504 | }, 2505 | "funding": { 2506 | "url": "https://github.com/sponsors/ljharb" 2507 | } 2508 | }, 2509 | "node_modules/is-weakmap": { 2510 | "version": "2.0.1", 2511 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2512 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2513 | "funding": { 2514 | "url": "https://github.com/sponsors/ljharb" 2515 | } 2516 | }, 2517 | "node_modules/is-weakref": { 2518 | "version": "1.0.2", 2519 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2520 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2521 | "dependencies": { 2522 | "call-bind": "^1.0.2" 2523 | }, 2524 | "funding": { 2525 | "url": "https://github.com/sponsors/ljharb" 2526 | } 2527 | }, 2528 | "node_modules/is-weakset": { 2529 | "version": "2.0.2", 2530 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2531 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2532 | "dependencies": { 2533 | "call-bind": "^1.0.2", 2534 | "get-intrinsic": "^1.1.1" 2535 | }, 2536 | "funding": { 2537 | "url": "https://github.com/sponsors/ljharb" 2538 | } 2539 | }, 2540 | "node_modules/is-wsl": { 2541 | "version": "2.2.0", 2542 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2543 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2544 | "dependencies": { 2545 | "is-docker": "^2.0.0" 2546 | }, 2547 | "engines": { 2548 | "node": ">=8" 2549 | } 2550 | }, 2551 | "node_modules/is-wsl/node_modules/is-docker": { 2552 | "version": "2.2.1", 2553 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2554 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2555 | "bin": { 2556 | "is-docker": "cli.js" 2557 | }, 2558 | "engines": { 2559 | "node": ">=8" 2560 | }, 2561 | "funding": { 2562 | "url": "https://github.com/sponsors/sindresorhus" 2563 | } 2564 | }, 2565 | "node_modules/isarray": { 2566 | "version": "2.0.5", 2567 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2568 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2569 | }, 2570 | "node_modules/isexe": { 2571 | "version": "2.0.0", 2572 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2573 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2574 | }, 2575 | "node_modules/jiti": { 2576 | "version": "1.18.2", 2577 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2578 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2579 | "bin": { 2580 | "jiti": "bin/jiti.js" 2581 | } 2582 | }, 2583 | "node_modules/js-sdsl": { 2584 | "version": "4.4.0", 2585 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", 2586 | "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", 2587 | "funding": { 2588 | "type": "opencollective", 2589 | "url": "https://opencollective.com/js-sdsl" 2590 | } 2591 | }, 2592 | "node_modules/js-tokens": { 2593 | "version": "4.0.0", 2594 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2595 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2596 | }, 2597 | "node_modules/js-yaml": { 2598 | "version": "4.1.0", 2599 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2600 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2601 | "dependencies": { 2602 | "argparse": "^2.0.1" 2603 | }, 2604 | "bin": { 2605 | "js-yaml": "bin/js-yaml.js" 2606 | } 2607 | }, 2608 | "node_modules/json-schema-traverse": { 2609 | "version": "0.4.1", 2610 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2611 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2612 | }, 2613 | "node_modules/json-stable-stringify-without-jsonify": { 2614 | "version": "1.0.1", 2615 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2616 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2617 | }, 2618 | "node_modules/json5": { 2619 | "version": "1.0.2", 2620 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2621 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2622 | "dependencies": { 2623 | "minimist": "^1.2.0" 2624 | }, 2625 | "bin": { 2626 | "json5": "lib/cli.js" 2627 | } 2628 | }, 2629 | "node_modules/jsx-ast-utils": { 2630 | "version": "3.3.3", 2631 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2632 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2633 | "dependencies": { 2634 | "array-includes": "^3.1.5", 2635 | "object.assign": "^4.1.3" 2636 | }, 2637 | "engines": { 2638 | "node": ">=4.0" 2639 | } 2640 | }, 2641 | "node_modules/language-subtag-registry": { 2642 | "version": "0.3.22", 2643 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2644 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2645 | }, 2646 | "node_modules/language-tags": { 2647 | "version": "1.0.5", 2648 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2649 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2650 | "dependencies": { 2651 | "language-subtag-registry": "~0.3.2" 2652 | } 2653 | }, 2654 | "node_modules/levn": { 2655 | "version": "0.4.1", 2656 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2657 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2658 | "dependencies": { 2659 | "prelude-ls": "^1.2.1", 2660 | "type-check": "~0.4.0" 2661 | }, 2662 | "engines": { 2663 | "node": ">= 0.8.0" 2664 | } 2665 | }, 2666 | "node_modules/lilconfig": { 2667 | "version": "2.1.0", 2668 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2669 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2670 | "engines": { 2671 | "node": ">=10" 2672 | } 2673 | }, 2674 | "node_modules/lines-and-columns": { 2675 | "version": "1.2.4", 2676 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2677 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2678 | }, 2679 | "node_modules/locate-path": { 2680 | "version": "6.0.0", 2681 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2682 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2683 | "dependencies": { 2684 | "p-locate": "^5.0.0" 2685 | }, 2686 | "engines": { 2687 | "node": ">=10" 2688 | }, 2689 | "funding": { 2690 | "url": "https://github.com/sponsors/sindresorhus" 2691 | } 2692 | }, 2693 | "node_modules/lodash.merge": { 2694 | "version": "4.6.2", 2695 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2696 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2697 | }, 2698 | "node_modules/loose-envify": { 2699 | "version": "1.4.0", 2700 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2701 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2702 | "dependencies": { 2703 | "js-tokens": "^3.0.0 || ^4.0.0" 2704 | }, 2705 | "bin": { 2706 | "loose-envify": "cli.js" 2707 | } 2708 | }, 2709 | "node_modules/lru-cache": { 2710 | "version": "6.0.0", 2711 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2712 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2713 | "dependencies": { 2714 | "yallist": "^4.0.0" 2715 | }, 2716 | "engines": { 2717 | "node": ">=10" 2718 | } 2719 | }, 2720 | "node_modules/merge-stream": { 2721 | "version": "2.0.0", 2722 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2723 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2724 | }, 2725 | "node_modules/merge2": { 2726 | "version": "1.4.1", 2727 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2728 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2729 | "engines": { 2730 | "node": ">= 8" 2731 | } 2732 | }, 2733 | "node_modules/micromatch": { 2734 | "version": "4.0.5", 2735 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2736 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2737 | "dependencies": { 2738 | "braces": "^3.0.2", 2739 | "picomatch": "^2.3.1" 2740 | }, 2741 | "engines": { 2742 | "node": ">=8.6" 2743 | } 2744 | }, 2745 | "node_modules/mimic-fn": { 2746 | "version": "4.0.0", 2747 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2748 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2749 | "engines": { 2750 | "node": ">=12" 2751 | }, 2752 | "funding": { 2753 | "url": "https://github.com/sponsors/sindresorhus" 2754 | } 2755 | }, 2756 | "node_modules/minimatch": { 2757 | "version": "3.1.2", 2758 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2759 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2760 | "dependencies": { 2761 | "brace-expansion": "^1.1.7" 2762 | }, 2763 | "engines": { 2764 | "node": "*" 2765 | } 2766 | }, 2767 | "node_modules/minimist": { 2768 | "version": "1.2.8", 2769 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2770 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2771 | "funding": { 2772 | "url": "https://github.com/sponsors/ljharb" 2773 | } 2774 | }, 2775 | "node_modules/ms": { 2776 | "version": "2.1.2", 2777 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2778 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2779 | }, 2780 | "node_modules/mz": { 2781 | "version": "2.7.0", 2782 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2783 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2784 | "dependencies": { 2785 | "any-promise": "^1.0.0", 2786 | "object-assign": "^4.0.1", 2787 | "thenify-all": "^1.0.0" 2788 | } 2789 | }, 2790 | "node_modules/nanoid": { 2791 | "version": "3.3.6", 2792 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2793 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2794 | "funding": [ 2795 | { 2796 | "type": "github", 2797 | "url": "https://github.com/sponsors/ai" 2798 | } 2799 | ], 2800 | "bin": { 2801 | "nanoid": "bin/nanoid.cjs" 2802 | }, 2803 | "engines": { 2804 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2805 | } 2806 | }, 2807 | "node_modules/natural-compare": { 2808 | "version": "1.4.0", 2809 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2810 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2811 | }, 2812 | "node_modules/next": { 2813 | "version": "13.4.2", 2814 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.2.tgz", 2815 | "integrity": "sha512-aNFqLs3a3nTGvLWlO9SUhCuMUHVPSFQC0+tDNGAsDXqx+WJDFSbvc233gOJ5H19SBc7nw36A9LwQepOJ2u/8Kg==", 2816 | "dependencies": { 2817 | "@next/env": "13.4.2", 2818 | "@swc/helpers": "0.5.1", 2819 | "busboy": "1.6.0", 2820 | "caniuse-lite": "^1.0.30001406", 2821 | "postcss": "8.4.14", 2822 | "styled-jsx": "5.1.1", 2823 | "zod": "3.21.4" 2824 | }, 2825 | "bin": { 2826 | "next": "dist/bin/next" 2827 | }, 2828 | "engines": { 2829 | "node": ">=16.8.0" 2830 | }, 2831 | "optionalDependencies": { 2832 | "@next/swc-darwin-arm64": "13.4.2", 2833 | "@next/swc-darwin-x64": "13.4.2", 2834 | "@next/swc-linux-arm64-gnu": "13.4.2", 2835 | "@next/swc-linux-arm64-musl": "13.4.2", 2836 | "@next/swc-linux-x64-gnu": "13.4.2", 2837 | "@next/swc-linux-x64-musl": "13.4.2", 2838 | "@next/swc-win32-arm64-msvc": "13.4.2", 2839 | "@next/swc-win32-ia32-msvc": "13.4.2", 2840 | "@next/swc-win32-x64-msvc": "13.4.2" 2841 | }, 2842 | "peerDependencies": { 2843 | "@opentelemetry/api": "^1.1.0", 2844 | "fibers": ">= 3.1.0", 2845 | "node-sass": "^6.0.0 || ^7.0.0", 2846 | "react": "^18.2.0", 2847 | "react-dom": "^18.2.0", 2848 | "sass": "^1.3.0" 2849 | }, 2850 | "peerDependenciesMeta": { 2851 | "@opentelemetry/api": { 2852 | "optional": true 2853 | }, 2854 | "fibers": { 2855 | "optional": true 2856 | }, 2857 | "node-sass": { 2858 | "optional": true 2859 | }, 2860 | "sass": { 2861 | "optional": true 2862 | } 2863 | } 2864 | }, 2865 | "node_modules/next/node_modules/postcss": { 2866 | "version": "8.4.14", 2867 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2868 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2869 | "funding": [ 2870 | { 2871 | "type": "opencollective", 2872 | "url": "https://opencollective.com/postcss/" 2873 | }, 2874 | { 2875 | "type": "tidelift", 2876 | "url": "https://tidelift.com/funding/github/npm/postcss" 2877 | } 2878 | ], 2879 | "dependencies": { 2880 | "nanoid": "^3.3.4", 2881 | "picocolors": "^1.0.0", 2882 | "source-map-js": "^1.0.2" 2883 | }, 2884 | "engines": { 2885 | "node": "^10 || ^12 || >=14" 2886 | } 2887 | }, 2888 | "node_modules/node-releases": { 2889 | "version": "2.0.10", 2890 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", 2891 | "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" 2892 | }, 2893 | "node_modules/normalize-path": { 2894 | "version": "3.0.0", 2895 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2896 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2897 | "engines": { 2898 | "node": ">=0.10.0" 2899 | } 2900 | }, 2901 | "node_modules/normalize-range": { 2902 | "version": "0.1.2", 2903 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2904 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2905 | "engines": { 2906 | "node": ">=0.10.0" 2907 | } 2908 | }, 2909 | "node_modules/npm-run-path": { 2910 | "version": "5.1.0", 2911 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 2912 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 2913 | "dependencies": { 2914 | "path-key": "^4.0.0" 2915 | }, 2916 | "engines": { 2917 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2918 | }, 2919 | "funding": { 2920 | "url": "https://github.com/sponsors/sindresorhus" 2921 | } 2922 | }, 2923 | "node_modules/npm-run-path/node_modules/path-key": { 2924 | "version": "4.0.0", 2925 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 2926 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 2927 | "engines": { 2928 | "node": ">=12" 2929 | }, 2930 | "funding": { 2931 | "url": "https://github.com/sponsors/sindresorhus" 2932 | } 2933 | }, 2934 | "node_modules/object-assign": { 2935 | "version": "4.1.1", 2936 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2937 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2938 | "engines": { 2939 | "node": ">=0.10.0" 2940 | } 2941 | }, 2942 | "node_modules/object-hash": { 2943 | "version": "3.0.0", 2944 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 2945 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2946 | "engines": { 2947 | "node": ">= 6" 2948 | } 2949 | }, 2950 | "node_modules/object-inspect": { 2951 | "version": "1.12.3", 2952 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2953 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2954 | "funding": { 2955 | "url": "https://github.com/sponsors/ljharb" 2956 | } 2957 | }, 2958 | "node_modules/object-is": { 2959 | "version": "1.1.5", 2960 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 2961 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 2962 | "dependencies": { 2963 | "call-bind": "^1.0.2", 2964 | "define-properties": "^1.1.3" 2965 | }, 2966 | "engines": { 2967 | "node": ">= 0.4" 2968 | }, 2969 | "funding": { 2970 | "url": "https://github.com/sponsors/ljharb" 2971 | } 2972 | }, 2973 | "node_modules/object-keys": { 2974 | "version": "1.1.1", 2975 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2976 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2977 | "engines": { 2978 | "node": ">= 0.4" 2979 | } 2980 | }, 2981 | "node_modules/object.assign": { 2982 | "version": "4.1.4", 2983 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2984 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2985 | "dependencies": { 2986 | "call-bind": "^1.0.2", 2987 | "define-properties": "^1.1.4", 2988 | "has-symbols": "^1.0.3", 2989 | "object-keys": "^1.1.1" 2990 | }, 2991 | "engines": { 2992 | "node": ">= 0.4" 2993 | }, 2994 | "funding": { 2995 | "url": "https://github.com/sponsors/ljharb" 2996 | } 2997 | }, 2998 | "node_modules/object.entries": { 2999 | "version": "1.1.6", 3000 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 3001 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 3002 | "dependencies": { 3003 | "call-bind": "^1.0.2", 3004 | "define-properties": "^1.1.4", 3005 | "es-abstract": "^1.20.4" 3006 | }, 3007 | "engines": { 3008 | "node": ">= 0.4" 3009 | } 3010 | }, 3011 | "node_modules/object.fromentries": { 3012 | "version": "2.0.6", 3013 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 3014 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 3015 | "dependencies": { 3016 | "call-bind": "^1.0.2", 3017 | "define-properties": "^1.1.4", 3018 | "es-abstract": "^1.20.4" 3019 | }, 3020 | "engines": { 3021 | "node": ">= 0.4" 3022 | }, 3023 | "funding": { 3024 | "url": "https://github.com/sponsors/ljharb" 3025 | } 3026 | }, 3027 | "node_modules/object.hasown": { 3028 | "version": "1.1.2", 3029 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 3030 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 3031 | "dependencies": { 3032 | "define-properties": "^1.1.4", 3033 | "es-abstract": "^1.20.4" 3034 | }, 3035 | "funding": { 3036 | "url": "https://github.com/sponsors/ljharb" 3037 | } 3038 | }, 3039 | "node_modules/object.values": { 3040 | "version": "1.1.6", 3041 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 3042 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 3043 | "dependencies": { 3044 | "call-bind": "^1.0.2", 3045 | "define-properties": "^1.1.4", 3046 | "es-abstract": "^1.20.4" 3047 | }, 3048 | "engines": { 3049 | "node": ">= 0.4" 3050 | }, 3051 | "funding": { 3052 | "url": "https://github.com/sponsors/ljharb" 3053 | } 3054 | }, 3055 | "node_modules/once": { 3056 | "version": "1.4.0", 3057 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3058 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3059 | "dependencies": { 3060 | "wrappy": "1" 3061 | } 3062 | }, 3063 | "node_modules/onetime": { 3064 | "version": "6.0.0", 3065 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 3066 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 3067 | "dependencies": { 3068 | "mimic-fn": "^4.0.0" 3069 | }, 3070 | "engines": { 3071 | "node": ">=12" 3072 | }, 3073 | "funding": { 3074 | "url": "https://github.com/sponsors/sindresorhus" 3075 | } 3076 | }, 3077 | "node_modules/open": { 3078 | "version": "9.1.0", 3079 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 3080 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 3081 | "dependencies": { 3082 | "default-browser": "^4.0.0", 3083 | "define-lazy-prop": "^3.0.0", 3084 | "is-inside-container": "^1.0.0", 3085 | "is-wsl": "^2.2.0" 3086 | }, 3087 | "engines": { 3088 | "node": ">=14.16" 3089 | }, 3090 | "funding": { 3091 | "url": "https://github.com/sponsors/sindresorhus" 3092 | } 3093 | }, 3094 | "node_modules/optionator": { 3095 | "version": "0.9.1", 3096 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3097 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3098 | "dependencies": { 3099 | "deep-is": "^0.1.3", 3100 | "fast-levenshtein": "^2.0.6", 3101 | "levn": "^0.4.1", 3102 | "prelude-ls": "^1.2.1", 3103 | "type-check": "^0.4.0", 3104 | "word-wrap": "^1.2.3" 3105 | }, 3106 | "engines": { 3107 | "node": ">= 0.8.0" 3108 | } 3109 | }, 3110 | "node_modules/p-limit": { 3111 | "version": "3.1.0", 3112 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3113 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3114 | "dependencies": { 3115 | "yocto-queue": "^0.1.0" 3116 | }, 3117 | "engines": { 3118 | "node": ">=10" 3119 | }, 3120 | "funding": { 3121 | "url": "https://github.com/sponsors/sindresorhus" 3122 | } 3123 | }, 3124 | "node_modules/p-locate": { 3125 | "version": "5.0.0", 3126 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3127 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3128 | "dependencies": { 3129 | "p-limit": "^3.0.2" 3130 | }, 3131 | "engines": { 3132 | "node": ">=10" 3133 | }, 3134 | "funding": { 3135 | "url": "https://github.com/sponsors/sindresorhus" 3136 | } 3137 | }, 3138 | "node_modules/parent-module": { 3139 | "version": "1.0.1", 3140 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3141 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3142 | "dependencies": { 3143 | "callsites": "^3.0.0" 3144 | }, 3145 | "engines": { 3146 | "node": ">=6" 3147 | } 3148 | }, 3149 | "node_modules/path-exists": { 3150 | "version": "4.0.0", 3151 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3152 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3153 | "engines": { 3154 | "node": ">=8" 3155 | } 3156 | }, 3157 | "node_modules/path-is-absolute": { 3158 | "version": "1.0.1", 3159 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3160 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3161 | "engines": { 3162 | "node": ">=0.10.0" 3163 | } 3164 | }, 3165 | "node_modules/path-key": { 3166 | "version": "3.1.1", 3167 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3168 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3169 | "engines": { 3170 | "node": ">=8" 3171 | } 3172 | }, 3173 | "node_modules/path-parse": { 3174 | "version": "1.0.7", 3175 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3176 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3177 | }, 3178 | "node_modules/path-type": { 3179 | "version": "4.0.0", 3180 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3181 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3182 | "engines": { 3183 | "node": ">=8" 3184 | } 3185 | }, 3186 | "node_modules/picocolors": { 3187 | "version": "1.0.0", 3188 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3189 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3190 | }, 3191 | "node_modules/picomatch": { 3192 | "version": "2.3.1", 3193 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3194 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3195 | "engines": { 3196 | "node": ">=8.6" 3197 | }, 3198 | "funding": { 3199 | "url": "https://github.com/sponsors/jonschlinkert" 3200 | } 3201 | }, 3202 | "node_modules/pify": { 3203 | "version": "2.3.0", 3204 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3205 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3206 | "engines": { 3207 | "node": ">=0.10.0" 3208 | } 3209 | }, 3210 | "node_modules/pirates": { 3211 | "version": "4.0.5", 3212 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3213 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3214 | "engines": { 3215 | "node": ">= 6" 3216 | } 3217 | }, 3218 | "node_modules/postcss": { 3219 | "version": "8.4.23", 3220 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", 3221 | "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", 3222 | "funding": [ 3223 | { 3224 | "type": "opencollective", 3225 | "url": "https://opencollective.com/postcss/" 3226 | }, 3227 | { 3228 | "type": "tidelift", 3229 | "url": "https://tidelift.com/funding/github/npm/postcss" 3230 | }, 3231 | { 3232 | "type": "github", 3233 | "url": "https://github.com/sponsors/ai" 3234 | } 3235 | ], 3236 | "dependencies": { 3237 | "nanoid": "^3.3.6", 3238 | "picocolors": "^1.0.0", 3239 | "source-map-js": "^1.0.2" 3240 | }, 3241 | "engines": { 3242 | "node": "^10 || ^12 || >=14" 3243 | } 3244 | }, 3245 | "node_modules/postcss-import": { 3246 | "version": "15.1.0", 3247 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3248 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3249 | "dependencies": { 3250 | "postcss-value-parser": "^4.0.0", 3251 | "read-cache": "^1.0.0", 3252 | "resolve": "^1.1.7" 3253 | }, 3254 | "engines": { 3255 | "node": ">=14.0.0" 3256 | }, 3257 | "peerDependencies": { 3258 | "postcss": "^8.0.0" 3259 | } 3260 | }, 3261 | "node_modules/postcss-js": { 3262 | "version": "4.0.1", 3263 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3264 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3265 | "dependencies": { 3266 | "camelcase-css": "^2.0.1" 3267 | }, 3268 | "engines": { 3269 | "node": "^12 || ^14 || >= 16" 3270 | }, 3271 | "funding": { 3272 | "type": "opencollective", 3273 | "url": "https://opencollective.com/postcss/" 3274 | }, 3275 | "peerDependencies": { 3276 | "postcss": "^8.4.21" 3277 | } 3278 | }, 3279 | "node_modules/postcss-load-config": { 3280 | "version": "4.0.1", 3281 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3282 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3283 | "dependencies": { 3284 | "lilconfig": "^2.0.5", 3285 | "yaml": "^2.1.1" 3286 | }, 3287 | "engines": { 3288 | "node": ">= 14" 3289 | }, 3290 | "funding": { 3291 | "type": "opencollective", 3292 | "url": "https://opencollective.com/postcss/" 3293 | }, 3294 | "peerDependencies": { 3295 | "postcss": ">=8.0.9", 3296 | "ts-node": ">=9.0.0" 3297 | }, 3298 | "peerDependenciesMeta": { 3299 | "postcss": { 3300 | "optional": true 3301 | }, 3302 | "ts-node": { 3303 | "optional": true 3304 | } 3305 | } 3306 | }, 3307 | "node_modules/postcss-nested": { 3308 | "version": "6.0.1", 3309 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3310 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3311 | "dependencies": { 3312 | "postcss-selector-parser": "^6.0.11" 3313 | }, 3314 | "engines": { 3315 | "node": ">=12.0" 3316 | }, 3317 | "funding": { 3318 | "type": "opencollective", 3319 | "url": "https://opencollective.com/postcss/" 3320 | }, 3321 | "peerDependencies": { 3322 | "postcss": "^8.2.14" 3323 | } 3324 | }, 3325 | "node_modules/postcss-selector-parser": { 3326 | "version": "6.0.12", 3327 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz", 3328 | "integrity": "sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==", 3329 | "dependencies": { 3330 | "cssesc": "^3.0.0", 3331 | "util-deprecate": "^1.0.2" 3332 | }, 3333 | "engines": { 3334 | "node": ">=4" 3335 | } 3336 | }, 3337 | "node_modules/postcss-value-parser": { 3338 | "version": "4.2.0", 3339 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3340 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3341 | }, 3342 | "node_modules/prelude-ls": { 3343 | "version": "1.2.1", 3344 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3345 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3346 | "engines": { 3347 | "node": ">= 0.8.0" 3348 | } 3349 | }, 3350 | "node_modules/prop-types": { 3351 | "version": "15.8.1", 3352 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3353 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3354 | "dependencies": { 3355 | "loose-envify": "^1.4.0", 3356 | "object-assign": "^4.1.1", 3357 | "react-is": "^16.13.1" 3358 | } 3359 | }, 3360 | "node_modules/punycode": { 3361 | "version": "2.3.0", 3362 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3363 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3364 | "engines": { 3365 | "node": ">=6" 3366 | } 3367 | }, 3368 | "node_modules/queue-microtask": { 3369 | "version": "1.2.3", 3370 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3371 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3372 | "funding": [ 3373 | { 3374 | "type": "github", 3375 | "url": "https://github.com/sponsors/feross" 3376 | }, 3377 | { 3378 | "type": "patreon", 3379 | "url": "https://www.patreon.com/feross" 3380 | }, 3381 | { 3382 | "type": "consulting", 3383 | "url": "https://feross.org/support" 3384 | } 3385 | ] 3386 | }, 3387 | "node_modules/react": { 3388 | "version": "18.2.0", 3389 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3390 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3391 | "dependencies": { 3392 | "loose-envify": "^1.1.0" 3393 | }, 3394 | "engines": { 3395 | "node": ">=0.10.0" 3396 | } 3397 | }, 3398 | "node_modules/react-dom": { 3399 | "version": "18.2.0", 3400 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3401 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3402 | "dependencies": { 3403 | "loose-envify": "^1.1.0", 3404 | "scheduler": "^0.23.0" 3405 | }, 3406 | "peerDependencies": { 3407 | "react": "^18.2.0" 3408 | } 3409 | }, 3410 | "node_modules/react-is": { 3411 | "version": "16.13.1", 3412 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3413 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3414 | }, 3415 | "node_modules/read-cache": { 3416 | "version": "1.0.0", 3417 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3418 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3419 | "dependencies": { 3420 | "pify": "^2.3.0" 3421 | } 3422 | }, 3423 | "node_modules/readdirp": { 3424 | "version": "3.6.0", 3425 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3426 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3427 | "dependencies": { 3428 | "picomatch": "^2.2.1" 3429 | }, 3430 | "engines": { 3431 | "node": ">=8.10.0" 3432 | } 3433 | }, 3434 | "node_modules/regenerator-runtime": { 3435 | "version": "0.13.11", 3436 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3437 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3438 | }, 3439 | "node_modules/regexp.prototype.flags": { 3440 | "version": "1.5.0", 3441 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 3442 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 3443 | "dependencies": { 3444 | "call-bind": "^1.0.2", 3445 | "define-properties": "^1.2.0", 3446 | "functions-have-names": "^1.2.3" 3447 | }, 3448 | "engines": { 3449 | "node": ">= 0.4" 3450 | }, 3451 | "funding": { 3452 | "url": "https://github.com/sponsors/ljharb" 3453 | } 3454 | }, 3455 | "node_modules/resolve": { 3456 | "version": "1.22.2", 3457 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3458 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3459 | "dependencies": { 3460 | "is-core-module": "^2.11.0", 3461 | "path-parse": "^1.0.7", 3462 | "supports-preserve-symlinks-flag": "^1.0.0" 3463 | }, 3464 | "bin": { 3465 | "resolve": "bin/resolve" 3466 | }, 3467 | "funding": { 3468 | "url": "https://github.com/sponsors/ljharb" 3469 | } 3470 | }, 3471 | "node_modules/resolve-from": { 3472 | "version": "4.0.0", 3473 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3474 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3475 | "engines": { 3476 | "node": ">=4" 3477 | } 3478 | }, 3479 | "node_modules/reusify": { 3480 | "version": "1.0.4", 3481 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3482 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3483 | "engines": { 3484 | "iojs": ">=1.0.0", 3485 | "node": ">=0.10.0" 3486 | } 3487 | }, 3488 | "node_modules/rimraf": { 3489 | "version": "3.0.2", 3490 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3491 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3492 | "dependencies": { 3493 | "glob": "^7.1.3" 3494 | }, 3495 | "bin": { 3496 | "rimraf": "bin.js" 3497 | }, 3498 | "funding": { 3499 | "url": "https://github.com/sponsors/isaacs" 3500 | } 3501 | }, 3502 | "node_modules/run-applescript": { 3503 | "version": "5.0.0", 3504 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3505 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3506 | "dependencies": { 3507 | "execa": "^5.0.0" 3508 | }, 3509 | "engines": { 3510 | "node": ">=12" 3511 | }, 3512 | "funding": { 3513 | "url": "https://github.com/sponsors/sindresorhus" 3514 | } 3515 | }, 3516 | "node_modules/run-applescript/node_modules/execa": { 3517 | "version": "5.1.1", 3518 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3519 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3520 | "dependencies": { 3521 | "cross-spawn": "^7.0.3", 3522 | "get-stream": "^6.0.0", 3523 | "human-signals": "^2.1.0", 3524 | "is-stream": "^2.0.0", 3525 | "merge-stream": "^2.0.0", 3526 | "npm-run-path": "^4.0.1", 3527 | "onetime": "^5.1.2", 3528 | "signal-exit": "^3.0.3", 3529 | "strip-final-newline": "^2.0.0" 3530 | }, 3531 | "engines": { 3532 | "node": ">=10" 3533 | }, 3534 | "funding": { 3535 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3536 | } 3537 | }, 3538 | "node_modules/run-applescript/node_modules/human-signals": { 3539 | "version": "2.1.0", 3540 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3541 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3542 | "engines": { 3543 | "node": ">=10.17.0" 3544 | } 3545 | }, 3546 | "node_modules/run-applescript/node_modules/is-stream": { 3547 | "version": "2.0.1", 3548 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3549 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3550 | "engines": { 3551 | "node": ">=8" 3552 | }, 3553 | "funding": { 3554 | "url": "https://github.com/sponsors/sindresorhus" 3555 | } 3556 | }, 3557 | "node_modules/run-applescript/node_modules/mimic-fn": { 3558 | "version": "2.1.0", 3559 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3560 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3561 | "engines": { 3562 | "node": ">=6" 3563 | } 3564 | }, 3565 | "node_modules/run-applescript/node_modules/npm-run-path": { 3566 | "version": "4.0.1", 3567 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3568 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3569 | "dependencies": { 3570 | "path-key": "^3.0.0" 3571 | }, 3572 | "engines": { 3573 | "node": ">=8" 3574 | } 3575 | }, 3576 | "node_modules/run-applescript/node_modules/onetime": { 3577 | "version": "5.1.2", 3578 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3579 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3580 | "dependencies": { 3581 | "mimic-fn": "^2.1.0" 3582 | }, 3583 | "engines": { 3584 | "node": ">=6" 3585 | }, 3586 | "funding": { 3587 | "url": "https://github.com/sponsors/sindresorhus" 3588 | } 3589 | }, 3590 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3591 | "version": "2.0.0", 3592 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3593 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3594 | "engines": { 3595 | "node": ">=6" 3596 | } 3597 | }, 3598 | "node_modules/run-parallel": { 3599 | "version": "1.2.0", 3600 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3601 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3602 | "funding": [ 3603 | { 3604 | "type": "github", 3605 | "url": "https://github.com/sponsors/feross" 3606 | }, 3607 | { 3608 | "type": "patreon", 3609 | "url": "https://www.patreon.com/feross" 3610 | }, 3611 | { 3612 | "type": "consulting", 3613 | "url": "https://feross.org/support" 3614 | } 3615 | ], 3616 | "dependencies": { 3617 | "queue-microtask": "^1.2.2" 3618 | } 3619 | }, 3620 | "node_modules/safe-regex-test": { 3621 | "version": "1.0.0", 3622 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3623 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3624 | "dependencies": { 3625 | "call-bind": "^1.0.2", 3626 | "get-intrinsic": "^1.1.3", 3627 | "is-regex": "^1.1.4" 3628 | }, 3629 | "funding": { 3630 | "url": "https://github.com/sponsors/ljharb" 3631 | } 3632 | }, 3633 | "node_modules/scheduler": { 3634 | "version": "0.23.0", 3635 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3636 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3637 | "dependencies": { 3638 | "loose-envify": "^1.1.0" 3639 | } 3640 | }, 3641 | "node_modules/semver": { 3642 | "version": "7.5.1", 3643 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", 3644 | "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", 3645 | "dependencies": { 3646 | "lru-cache": "^6.0.0" 3647 | }, 3648 | "bin": { 3649 | "semver": "bin/semver.js" 3650 | }, 3651 | "engines": { 3652 | "node": ">=10" 3653 | } 3654 | }, 3655 | "node_modules/shebang-command": { 3656 | "version": "2.0.0", 3657 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3658 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3659 | "dependencies": { 3660 | "shebang-regex": "^3.0.0" 3661 | }, 3662 | "engines": { 3663 | "node": ">=8" 3664 | } 3665 | }, 3666 | "node_modules/shebang-regex": { 3667 | "version": "3.0.0", 3668 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3669 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3670 | "engines": { 3671 | "node": ">=8" 3672 | } 3673 | }, 3674 | "node_modules/side-channel": { 3675 | "version": "1.0.4", 3676 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3677 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3678 | "dependencies": { 3679 | "call-bind": "^1.0.0", 3680 | "get-intrinsic": "^1.0.2", 3681 | "object-inspect": "^1.9.0" 3682 | }, 3683 | "funding": { 3684 | "url": "https://github.com/sponsors/ljharb" 3685 | } 3686 | }, 3687 | "node_modules/signal-exit": { 3688 | "version": "3.0.7", 3689 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3690 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3691 | }, 3692 | "node_modules/slash": { 3693 | "version": "3.0.0", 3694 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3695 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3696 | "engines": { 3697 | "node": ">=8" 3698 | } 3699 | }, 3700 | "node_modules/source-map-js": { 3701 | "version": "1.0.2", 3702 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3703 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3704 | "engines": { 3705 | "node": ">=0.10.0" 3706 | } 3707 | }, 3708 | "node_modules/stop-iteration-iterator": { 3709 | "version": "1.0.0", 3710 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3711 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3712 | "dependencies": { 3713 | "internal-slot": "^1.0.4" 3714 | }, 3715 | "engines": { 3716 | "node": ">= 0.4" 3717 | } 3718 | }, 3719 | "node_modules/streamsearch": { 3720 | "version": "1.1.0", 3721 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3722 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3723 | "engines": { 3724 | "node": ">=10.0.0" 3725 | } 3726 | }, 3727 | "node_modules/string.prototype.matchall": { 3728 | "version": "4.0.8", 3729 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3730 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3731 | "dependencies": { 3732 | "call-bind": "^1.0.2", 3733 | "define-properties": "^1.1.4", 3734 | "es-abstract": "^1.20.4", 3735 | "get-intrinsic": "^1.1.3", 3736 | "has-symbols": "^1.0.3", 3737 | "internal-slot": "^1.0.3", 3738 | "regexp.prototype.flags": "^1.4.3", 3739 | "side-channel": "^1.0.4" 3740 | }, 3741 | "funding": { 3742 | "url": "https://github.com/sponsors/ljharb" 3743 | } 3744 | }, 3745 | "node_modules/string.prototype.trim": { 3746 | "version": "1.2.7", 3747 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3748 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3749 | "dependencies": { 3750 | "call-bind": "^1.0.2", 3751 | "define-properties": "^1.1.4", 3752 | "es-abstract": "^1.20.4" 3753 | }, 3754 | "engines": { 3755 | "node": ">= 0.4" 3756 | }, 3757 | "funding": { 3758 | "url": "https://github.com/sponsors/ljharb" 3759 | } 3760 | }, 3761 | "node_modules/string.prototype.trimend": { 3762 | "version": "1.0.6", 3763 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3764 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3765 | "dependencies": { 3766 | "call-bind": "^1.0.2", 3767 | "define-properties": "^1.1.4", 3768 | "es-abstract": "^1.20.4" 3769 | }, 3770 | "funding": { 3771 | "url": "https://github.com/sponsors/ljharb" 3772 | } 3773 | }, 3774 | "node_modules/string.prototype.trimstart": { 3775 | "version": "1.0.6", 3776 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3777 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3778 | "dependencies": { 3779 | "call-bind": "^1.0.2", 3780 | "define-properties": "^1.1.4", 3781 | "es-abstract": "^1.20.4" 3782 | }, 3783 | "funding": { 3784 | "url": "https://github.com/sponsors/ljharb" 3785 | } 3786 | }, 3787 | "node_modules/strip-ansi": { 3788 | "version": "6.0.1", 3789 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3790 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3791 | "dependencies": { 3792 | "ansi-regex": "^5.0.1" 3793 | }, 3794 | "engines": { 3795 | "node": ">=8" 3796 | } 3797 | }, 3798 | "node_modules/strip-bom": { 3799 | "version": "3.0.0", 3800 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3801 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3802 | "engines": { 3803 | "node": ">=4" 3804 | } 3805 | }, 3806 | "node_modules/strip-final-newline": { 3807 | "version": "3.0.0", 3808 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3809 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3810 | "engines": { 3811 | "node": ">=12" 3812 | }, 3813 | "funding": { 3814 | "url": "https://github.com/sponsors/sindresorhus" 3815 | } 3816 | }, 3817 | "node_modules/strip-json-comments": { 3818 | "version": "3.1.1", 3819 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3820 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3821 | "engines": { 3822 | "node": ">=8" 3823 | }, 3824 | "funding": { 3825 | "url": "https://github.com/sponsors/sindresorhus" 3826 | } 3827 | }, 3828 | "node_modules/styled-jsx": { 3829 | "version": "5.1.1", 3830 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3831 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3832 | "dependencies": { 3833 | "client-only": "0.0.1" 3834 | }, 3835 | "engines": { 3836 | "node": ">= 12.0.0" 3837 | }, 3838 | "peerDependencies": { 3839 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3840 | }, 3841 | "peerDependenciesMeta": { 3842 | "@babel/core": { 3843 | "optional": true 3844 | }, 3845 | "babel-plugin-macros": { 3846 | "optional": true 3847 | } 3848 | } 3849 | }, 3850 | "node_modules/sucrase": { 3851 | "version": "3.32.0", 3852 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 3853 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 3854 | "dependencies": { 3855 | "@jridgewell/gen-mapping": "^0.3.2", 3856 | "commander": "^4.0.0", 3857 | "glob": "7.1.6", 3858 | "lines-and-columns": "^1.1.6", 3859 | "mz": "^2.7.0", 3860 | "pirates": "^4.0.1", 3861 | "ts-interface-checker": "^0.1.9" 3862 | }, 3863 | "bin": { 3864 | "sucrase": "bin/sucrase", 3865 | "sucrase-node": "bin/sucrase-node" 3866 | }, 3867 | "engines": { 3868 | "node": ">=8" 3869 | } 3870 | }, 3871 | "node_modules/sucrase/node_modules/glob": { 3872 | "version": "7.1.6", 3873 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 3874 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 3875 | "dependencies": { 3876 | "fs.realpath": "^1.0.0", 3877 | "inflight": "^1.0.4", 3878 | "inherits": "2", 3879 | "minimatch": "^3.0.4", 3880 | "once": "^1.3.0", 3881 | "path-is-absolute": "^1.0.0" 3882 | }, 3883 | "engines": { 3884 | "node": "*" 3885 | }, 3886 | "funding": { 3887 | "url": "https://github.com/sponsors/isaacs" 3888 | } 3889 | }, 3890 | "node_modules/supports-color": { 3891 | "version": "7.2.0", 3892 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3893 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3894 | "dependencies": { 3895 | "has-flag": "^4.0.0" 3896 | }, 3897 | "engines": { 3898 | "node": ">=8" 3899 | } 3900 | }, 3901 | "node_modules/supports-preserve-symlinks-flag": { 3902 | "version": "1.0.0", 3903 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3904 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3905 | "engines": { 3906 | "node": ">= 0.4" 3907 | }, 3908 | "funding": { 3909 | "url": "https://github.com/sponsors/ljharb" 3910 | } 3911 | }, 3912 | "node_modules/synckit": { 3913 | "version": "0.8.5", 3914 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 3915 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 3916 | "dependencies": { 3917 | "@pkgr/utils": "^2.3.1", 3918 | "tslib": "^2.5.0" 3919 | }, 3920 | "engines": { 3921 | "node": "^14.18.0 || >=16.0.0" 3922 | }, 3923 | "funding": { 3924 | "url": "https://opencollective.com/unts" 3925 | } 3926 | }, 3927 | "node_modules/tailwindcss": { 3928 | "version": "3.3.2", 3929 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 3930 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 3931 | "dependencies": { 3932 | "@alloc/quick-lru": "^5.2.0", 3933 | "arg": "^5.0.2", 3934 | "chokidar": "^3.5.3", 3935 | "didyoumean": "^1.2.2", 3936 | "dlv": "^1.1.3", 3937 | "fast-glob": "^3.2.12", 3938 | "glob-parent": "^6.0.2", 3939 | "is-glob": "^4.0.3", 3940 | "jiti": "^1.18.2", 3941 | "lilconfig": "^2.1.0", 3942 | "micromatch": "^4.0.5", 3943 | "normalize-path": "^3.0.0", 3944 | "object-hash": "^3.0.0", 3945 | "picocolors": "^1.0.0", 3946 | "postcss": "^8.4.23", 3947 | "postcss-import": "^15.1.0", 3948 | "postcss-js": "^4.0.1", 3949 | "postcss-load-config": "^4.0.1", 3950 | "postcss-nested": "^6.0.1", 3951 | "postcss-selector-parser": "^6.0.11", 3952 | "postcss-value-parser": "^4.2.0", 3953 | "resolve": "^1.22.2", 3954 | "sucrase": "^3.32.0" 3955 | }, 3956 | "bin": { 3957 | "tailwind": "lib/cli.js", 3958 | "tailwindcss": "lib/cli.js" 3959 | }, 3960 | "engines": { 3961 | "node": ">=14.0.0" 3962 | } 3963 | }, 3964 | "node_modules/tapable": { 3965 | "version": "2.2.1", 3966 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3967 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3968 | "engines": { 3969 | "node": ">=6" 3970 | } 3971 | }, 3972 | "node_modules/text-table": { 3973 | "version": "0.2.0", 3974 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3975 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 3976 | }, 3977 | "node_modules/thenify": { 3978 | "version": "3.3.1", 3979 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3980 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3981 | "dependencies": { 3982 | "any-promise": "^1.0.0" 3983 | } 3984 | }, 3985 | "node_modules/thenify-all": { 3986 | "version": "1.6.0", 3987 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3988 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3989 | "dependencies": { 3990 | "thenify": ">= 3.1.0 < 4" 3991 | }, 3992 | "engines": { 3993 | "node": ">=0.8" 3994 | } 3995 | }, 3996 | "node_modules/titleize": { 3997 | "version": "3.0.0", 3998 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 3999 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 4000 | "engines": { 4001 | "node": ">=12" 4002 | }, 4003 | "funding": { 4004 | "url": "https://github.com/sponsors/sindresorhus" 4005 | } 4006 | }, 4007 | "node_modules/to-regex-range": { 4008 | "version": "5.0.1", 4009 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4010 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4011 | "dependencies": { 4012 | "is-number": "^7.0.0" 4013 | }, 4014 | "engines": { 4015 | "node": ">=8.0" 4016 | } 4017 | }, 4018 | "node_modules/ts-interface-checker": { 4019 | "version": "0.1.13", 4020 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4021 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4022 | }, 4023 | "node_modules/tsconfig-paths": { 4024 | "version": "3.14.2", 4025 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 4026 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 4027 | "dependencies": { 4028 | "@types/json5": "^0.0.29", 4029 | "json5": "^1.0.2", 4030 | "minimist": "^1.2.6", 4031 | "strip-bom": "^3.0.0" 4032 | } 4033 | }, 4034 | "node_modules/tslib": { 4035 | "version": "2.5.0", 4036 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", 4037 | "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" 4038 | }, 4039 | "node_modules/tsutils": { 4040 | "version": "3.21.0", 4041 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4042 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4043 | "dependencies": { 4044 | "tslib": "^1.8.1" 4045 | }, 4046 | "engines": { 4047 | "node": ">= 6" 4048 | }, 4049 | "peerDependencies": { 4050 | "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" 4051 | } 4052 | }, 4053 | "node_modules/tsutils/node_modules/tslib": { 4054 | "version": "1.14.1", 4055 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4056 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 4057 | }, 4058 | "node_modules/type-check": { 4059 | "version": "0.4.0", 4060 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4061 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4062 | "dependencies": { 4063 | "prelude-ls": "^1.2.1" 4064 | }, 4065 | "engines": { 4066 | "node": ">= 0.8.0" 4067 | } 4068 | }, 4069 | "node_modules/type-fest": { 4070 | "version": "0.20.2", 4071 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4072 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4073 | "engines": { 4074 | "node": ">=10" 4075 | }, 4076 | "funding": { 4077 | "url": "https://github.com/sponsors/sindresorhus" 4078 | } 4079 | }, 4080 | "node_modules/typed-array-length": { 4081 | "version": "1.0.4", 4082 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4083 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4084 | "dependencies": { 4085 | "call-bind": "^1.0.2", 4086 | "for-each": "^0.3.3", 4087 | "is-typed-array": "^1.1.9" 4088 | }, 4089 | "funding": { 4090 | "url": "https://github.com/sponsors/ljharb" 4091 | } 4092 | }, 4093 | "node_modules/typescript": { 4094 | "version": "5.0.4", 4095 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", 4096 | "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", 4097 | "bin": { 4098 | "tsc": "bin/tsc", 4099 | "tsserver": "bin/tsserver" 4100 | }, 4101 | "engines": { 4102 | "node": ">=12.20" 4103 | } 4104 | }, 4105 | "node_modules/unbox-primitive": { 4106 | "version": "1.0.2", 4107 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4108 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4109 | "dependencies": { 4110 | "call-bind": "^1.0.2", 4111 | "has-bigints": "^1.0.2", 4112 | "has-symbols": "^1.0.3", 4113 | "which-boxed-primitive": "^1.0.2" 4114 | }, 4115 | "funding": { 4116 | "url": "https://github.com/sponsors/ljharb" 4117 | } 4118 | }, 4119 | "node_modules/untildify": { 4120 | "version": "4.0.0", 4121 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 4122 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 4123 | "engines": { 4124 | "node": ">=8" 4125 | } 4126 | }, 4127 | "node_modules/update-browserslist-db": { 4128 | "version": "1.0.11", 4129 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 4130 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 4131 | "funding": [ 4132 | { 4133 | "type": "opencollective", 4134 | "url": "https://opencollective.com/browserslist" 4135 | }, 4136 | { 4137 | "type": "tidelift", 4138 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4139 | }, 4140 | { 4141 | "type": "github", 4142 | "url": "https://github.com/sponsors/ai" 4143 | } 4144 | ], 4145 | "dependencies": { 4146 | "escalade": "^3.1.1", 4147 | "picocolors": "^1.0.0" 4148 | }, 4149 | "bin": { 4150 | "update-browserslist-db": "cli.js" 4151 | }, 4152 | "peerDependencies": { 4153 | "browserslist": ">= 4.21.0" 4154 | } 4155 | }, 4156 | "node_modules/uri-js": { 4157 | "version": "4.4.1", 4158 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4159 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4160 | "dependencies": { 4161 | "punycode": "^2.1.0" 4162 | } 4163 | }, 4164 | "node_modules/util-deprecate": { 4165 | "version": "1.0.2", 4166 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4167 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4168 | }, 4169 | "node_modules/which": { 4170 | "version": "2.0.2", 4171 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4172 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4173 | "dependencies": { 4174 | "isexe": "^2.0.0" 4175 | }, 4176 | "bin": { 4177 | "node-which": "bin/node-which" 4178 | }, 4179 | "engines": { 4180 | "node": ">= 8" 4181 | } 4182 | }, 4183 | "node_modules/which-boxed-primitive": { 4184 | "version": "1.0.2", 4185 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4186 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4187 | "dependencies": { 4188 | "is-bigint": "^1.0.1", 4189 | "is-boolean-object": "^1.1.0", 4190 | "is-number-object": "^1.0.4", 4191 | "is-string": "^1.0.5", 4192 | "is-symbol": "^1.0.3" 4193 | }, 4194 | "funding": { 4195 | "url": "https://github.com/sponsors/ljharb" 4196 | } 4197 | }, 4198 | "node_modules/which-collection": { 4199 | "version": "1.0.1", 4200 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4201 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4202 | "dependencies": { 4203 | "is-map": "^2.0.1", 4204 | "is-set": "^2.0.1", 4205 | "is-weakmap": "^2.0.1", 4206 | "is-weakset": "^2.0.1" 4207 | }, 4208 | "funding": { 4209 | "url": "https://github.com/sponsors/ljharb" 4210 | } 4211 | }, 4212 | "node_modules/which-typed-array": { 4213 | "version": "1.1.9", 4214 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4215 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4216 | "dependencies": { 4217 | "available-typed-arrays": "^1.0.5", 4218 | "call-bind": "^1.0.2", 4219 | "for-each": "^0.3.3", 4220 | "gopd": "^1.0.1", 4221 | "has-tostringtag": "^1.0.0", 4222 | "is-typed-array": "^1.1.10" 4223 | }, 4224 | "engines": { 4225 | "node": ">= 0.4" 4226 | }, 4227 | "funding": { 4228 | "url": "https://github.com/sponsors/ljharb" 4229 | } 4230 | }, 4231 | "node_modules/word-wrap": { 4232 | "version": "1.2.3", 4233 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4234 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4235 | "engines": { 4236 | "node": ">=0.10.0" 4237 | } 4238 | }, 4239 | "node_modules/wrappy": { 4240 | "version": "1.0.2", 4241 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4242 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4243 | }, 4244 | "node_modules/yallist": { 4245 | "version": "4.0.0", 4246 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4247 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4248 | }, 4249 | "node_modules/yaml": { 4250 | "version": "2.2.2", 4251 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", 4252 | "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", 4253 | "engines": { 4254 | "node": ">= 14" 4255 | } 4256 | }, 4257 | "node_modules/yocto-queue": { 4258 | "version": "0.1.0", 4259 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4260 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4261 | "engines": { 4262 | "node": ">=10" 4263 | }, 4264 | "funding": { 4265 | "url": "https://github.com/sponsors/sindresorhus" 4266 | } 4267 | }, 4268 | "node_modules/zod": { 4269 | "version": "3.21.4", 4270 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4271 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4272 | "funding": { 4273 | "url": "https://github.com/sponsors/colinhacks" 4274 | } 4275 | } 4276 | } 4277 | } 4278 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-template", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@types/node": "20.1.4", 13 | "@types/react": "18.2.6", 14 | "@types/react-dom": "18.2.4", 15 | "autoprefixer": "10.4.14", 16 | "eslint": "8.40.0", 17 | "eslint-config-next": "13.4.2", 18 | "next": "13.4.2", 19 | "postcss": "8.4.23", 20 | "react": "18.2.0", 21 | "react-dom": "18.2.0", 22 | "tailwindcss": "3.3.2", 23 | "typescript": "5.0.4" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/nextMark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/nextjs-template/2aee5fe392544483540058cb6ae942504c545281/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | html { 20 | height: 100vh; 21 | } 22 | 23 | body { 24 | height: 100vh; 25 | color: rgb(var(--foreground-rgb)); 26 | background: linear-gradient( 27 | to bottom, 28 | transparent, 29 | rgb(var(--background-end-rgb)) 30 | ) 31 | rgb(var(--background-start-rgb)); 32 | } 33 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export const metadata = { 7 | title: 'Create Next App', 8 | description: 'Generated by create next app', 9 | } 10 | 11 | export default function RootLayout({ 12 | children, 13 | }: { 14 | children: React.ReactNode 15 | }) { 16 | return ( 17 | 18 | {children} 19 | 20 | ) 21 | } 22 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image' 2 | 3 | export default function Home() { 4 | return ( 5 |
6 |
7 | Fleek Logo 14 | add 20 | Next Logo 28 |
29 | 30 |

31 | This is a template for creating a Next.js site and deploying it on Fleek. 32 |

33 | 34 | 67 |
68 | ) 69 | } 70 | 71 | type CardProps = { 72 | title: string; 73 | body: string; 74 | href: string; 75 | icon: string; 76 | width: number; 77 | } 78 | 79 | const Card = ({ title, width, body, href, icon }: CardProps) => { 80 | return ( 81 |
  • 82 | 83 |
    84 | card-icon 90 |

    91 | {title} 92 |

    93 |
    94 |

    95 | {body} 96 |

    97 |
    98 |
  • 99 | ) 100 | } 101 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./src/*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | --------------------------------------------------------------------------------