├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .vscode └── extensions.json ├── README.md ├── adapters └── static │ └── vite.config.ts ├── package-lock.json ├── package.json ├── public ├── favicon.svg ├── manifest.json └── robots.txt ├── src ├── entry.dev.tsx ├── entry.preview.tsx ├── entry.ssr.tsx ├── global.css ├── root.tsx └── routes │ ├── index.tsx │ ├── layout.tsx │ └── service-worker.ts ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.log 2 | **/.DS_Store 3 | *. 4 | .vscode/settings.json 5 | .history 6 | .yarn 7 | bazel-* 8 | bazel-bin 9 | bazel-out 10 | bazel-qwik 11 | bazel-testlogs 12 | dist 13 | dist-dev 14 | lib 15 | lib-types 16 | etc 17 | external 18 | node_modules 19 | temp 20 | tsc-out 21 | tsdoc-metadata.json 22 | target 23 | output 24 | rollup.config.js 25 | build 26 | .cache 27 | .vscode 28 | .rollup.cache 29 | dist 30 | tsconfig.tsbuildinfo 31 | vite.config.ts 32 | *.spec.tsx 33 | *.spec.ts 34 | .netlify 35 | pnpm-lock.yaml 36 | package-lock.json 37 | yarn.lock 38 | server 39 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | browser: true, 5 | es2021: true, 6 | node: true, 7 | }, 8 | extends: [ 9 | 'eslint:recommended', 10 | 'plugin:@typescript-eslint/recommended', 11 | 'plugin:qwik/recommended', 12 | ], 13 | parser: '@typescript-eslint/parser', 14 | parserOptions: { 15 | tsconfigRootDir: __dirname, 16 | project: ['./tsconfig.json'], 17 | ecmaVersion: 2021, 18 | sourceType: 'module', 19 | ecmaFeatures: { 20 | jsx: true, 21 | }, 22 | }, 23 | plugins: ['@typescript-eslint'], 24 | rules: { 25 | '@typescript-eslint/no-explicit-any': 'off', 26 | '@typescript-eslint/explicit-module-boundary-types': 'off', 27 | '@typescript-eslint/no-inferrable-types': 'off', 28 | '@typescript-eslint/no-non-null-assertion': 'off', 29 | '@typescript-eslint/no-empty-interface': 'off', 30 | '@typescript-eslint/no-namespace': 'off', 31 | '@typescript-eslint/no-empty-function': 'off', 32 | '@typescript-eslint/no-this-alias': 'off', 33 | '@typescript-eslint/ban-types': 'off', 34 | '@typescript-eslint/ban-ts-comment': 'off', 35 | 'prefer-spread': 'off', 36 | 'no-case-declarations': 'off', 37 | 'no-console': 'off', 38 | '@typescript-eslint/no-unused-vars': ['error'], 39 | '@typescript-eslint/consistent-type-imports': 'warn', 40 | }, 41 | }; 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build 2 | /dist 3 | /lib 4 | /lib-types 5 | /server 6 | 7 | # Development 8 | node_modules 9 | 10 | # Cache 11 | .cache 12 | .mf 13 | .rollup.cache 14 | tsconfig.tsbuildinfo 15 | 16 | # Logs 17 | logs 18 | *.log 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | pnpm-debug.log* 23 | lerna-debug.log* 24 | 25 | # Editor 26 | .vscode/* 27 | !.vscode/extensions.json 28 | .idea 29 | .DS_Store 30 | *.suo 31 | *.ntvs* 32 | *.njsproj 33 | *.sln 34 | *.sw? 35 | 36 | # Yarn 37 | .yarn/* 38 | !.yarn/releases 39 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/*.log 2 | **/.DS_Store 3 | *. 4 | .vscode/settings.json 5 | .history 6 | .yarn 7 | bazel-* 8 | bazel-bin 9 | bazel-out 10 | bazel-qwik 11 | bazel-testlogs 12 | dist 13 | dist-dev 14 | lib 15 | lib-types 16 | etc 17 | external 18 | node_modules 19 | temp 20 | tsc-out 21 | tsdoc-metadata.json 22 | target 23 | output 24 | rollup.config.js 25 | build 26 | .cache 27 | .vscode 28 | .rollup.cache 29 | dist 30 | tsconfig.tsbuildinfo 31 | vite.config.ts 32 | *.spec.tsx 33 | *.spec.ts 34 | .netlify 35 | pnpm-lock.yaml 36 | package-lock.json 37 | yarn.lock 38 | server 39 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint", "unifiedjs.vscode-mdx"], 3 | "unwantedRecommendations": [] 4 | } 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kinsta - Hello World - Static Site With Qwik 2 | 3 | An example of how to deploy a static site built with Qwik on Kinsta Hosting. 4 | 5 | --- 6 | Kinsta is a developer-centric cloud host / PaaS. We’re striving to make it easier for you to share your web projects with your users. You can focus on coding and building, and we'll take care of deployments with fast, scalable hosting. 7 | 8 | At Kinsta, Static Sites are free, and you can host up to 100 sites on your account for completely free. 9 | 10 | Kinsta offers 24/7 support via our chat system, which is always one click away in [MyKinsta](https://my.kinsta.com/) for customers with a paid plan or service. 11 | 12 | If you only have a Static Site Hosting account, we have detailed [Static Site Hosting documentation](https://kinsta.com/docs/static-site-hosting/) available. You can also connect with developers and knowledgeable community members in the [Kinsta Community](https://community.kinsta.com/c/static-sites/22) forum. 13 | 14 | - [Start your free trial](https://kinsta.com/signup/?product_type=app-db) 15 | - [Application Hosting](https://kinsta.com/application-hosting) 16 | - [Database Hosting](https://kinsta.com/database-hosting) 17 | - [Static Site Hosting](https://kinsta.com/static-site-hosting) 18 | 19 | ## Setup 20 |
21 | Static Site Hosting [click to expand] 22 | 23 | ### Dependency Management 24 | 25 | Kinsta automatically installs dependencies defined in your `package.json` file during the deployment process. 26 | 27 | ### Setting the Build Command, Node version, and Publish directory 28 | 29 | After connecting the repository, **Static Site Hosting** will automatically try to populate all the fields with the correct values. 30 | | Configuration option |Value | 31 | |---|---| 32 | | Build command | `npm run build && npm run build.server` | 33 | | Node version | 16.20 | 34 | | Publish directory | `dist` | 35 | 36 | ### Deployment Lifecycle 37 | 38 | Whenever a deployment is initiated (through creating an application or re-deploying due to an incoming commit), the build command is run, followed by the deployment of the Publish Directory content. 39 |
40 | 41 |
42 | Application Hosting [click to expand] 43 | 44 | ### Dependency Management 45 | 46 | During the deployment process Kinsta will automatically install dependencies defined in your `package.json` file. 47 | 48 | ### Port 49 | 50 | Kinsta automatically sets the `PORT` environment variable. You should **not** define it yourself and you should **not** hard-code it into the application. The `serve` packageutilizes the port set by Kinsta automatically. 51 | 52 | ### Start Command 53 | 54 | When deploying an application, Kinsta automatically creates a web process with `npm start` as the entry point. Make sure to use this command to run your server. 55 | 56 | ### Deployment Lifecycle 57 | 58 | Whenever a deployment is initiated (through creating an application or re-deploying due to an incoming commit) the `npm build` command is run, followed by the `npm start` command. 59 | 60 |
61 | 62 | ## What is Qwik 63 | Qwik offers instant loading of web applications of any size or complexity with about 1 KB of JavaScript and consistent performance at scale. More information is available on the [Qwik](https://qwik.builder.io/) website. 64 | -------------------------------------------------------------------------------- /adapters/static/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { staticAdapter } from '@builder.io/qwik-city/adapters/static/vite'; 2 | import { extendConfig } from '@builder.io/qwik-city/vite'; 3 | import baseConfig from '../../vite.config'; 4 | 5 | export default extendConfig(baseConfig, () => { 6 | return { 7 | build: { 8 | ssr: true, 9 | rollupOptions: { 10 | input: ['@qwik-city-plan'], 11 | }, 12 | }, 13 | plugins: [ 14 | staticAdapter({ 15 | origin: 'https://yoursite.qwik.dev', 16 | }), 17 | ], 18 | }; 19 | }); 20 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-qwik-basic-starter", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "name": "my-qwik-basic-starter", 8 | "dependencies": { 9 | "serve": "^14.2.0" 10 | }, 11 | "devDependencies": { 12 | "@builder.io/qwik": "0.21.0", 13 | "@builder.io/qwik-city": "0.5.3", 14 | "@types/eslint": "8.21.1", 15 | "@types/node": "^18.14.0", 16 | "@types/node-fetch": "latest", 17 | "@typescript-eslint/eslint-plugin": "5.54.0", 18 | "@typescript-eslint/parser": "5.54.0", 19 | "eslint": "8.35.0", 20 | "eslint-plugin-qwik": "0.21.0", 21 | "node-fetch": "3.3.0", 22 | "prettier": "2.8.4", 23 | "typescript": "4.9.5", 24 | "undici": "5.20.0", 25 | "vite": "4.1.4", 26 | "vite-tsconfig-paths": "3.5.0" 27 | }, 28 | "engines": { 29 | "node": ">=15.0.0" 30 | } 31 | }, 32 | "node_modules/@builder.io/qwik": { 33 | "version": "0.21.0", 34 | "resolved": "https://registry.npmjs.org/@builder.io/qwik/-/qwik-0.21.0.tgz", 35 | "integrity": "sha512-YDQcCSGPgXLQkY260N4XvYavxPNHewzIzIjqbl9hvnnk7a1s4EkcCrkudbGCl6VkkiQsDKMYPsemy4sFpKlafg==", 36 | "dev": true, 37 | "bin": { 38 | "qwik": "qwik.cjs" 39 | }, 40 | "engines": { 41 | "node": ">=16.8.0 <18.0.0 || >=18.11" 42 | }, 43 | "peerDependencies": { 44 | "undici": "^5.14.0" 45 | } 46 | }, 47 | "node_modules/@builder.io/qwik-city": { 48 | "version": "0.5.3", 49 | "resolved": "https://registry.npmjs.org/@builder.io/qwik-city/-/qwik-city-0.5.3.tgz", 50 | "integrity": "sha512-9S5IlcD5rUdrHHITvBkENNPdW6Tzu6ZAPlvdjFjN6qu92XB1IaNncxkpReOapNp1AoEjpaDxRzAYAN+jEsliJQ==", 51 | "dev": true, 52 | "dependencies": { 53 | "@mdx-js/mdx": "2.3.0", 54 | "@types/mdx": "2.0.3", 55 | "source-map": "0.7.4", 56 | "vfile": "5.3.7", 57 | "zod": "^3.20.6" 58 | }, 59 | "engines": { 60 | "node": ">=16.8.0 <18.0.0 || >=18.11" 61 | }, 62 | "peerDependencies": { 63 | "@builder.io/qwik": ">=0.20.0" 64 | } 65 | }, 66 | "node_modules/@cush/relative": { 67 | "version": "1.0.0", 68 | "resolved": "https://registry.npmjs.org/@cush/relative/-/relative-1.0.0.tgz", 69 | "integrity": "sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==", 70 | "dev": true 71 | }, 72 | "node_modules/@esbuild/android-arm": { 73 | "version": "0.16.17", 74 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", 75 | "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", 76 | "cpu": [ 77 | "arm" 78 | ], 79 | "dev": true, 80 | "optional": true, 81 | "os": [ 82 | "android" 83 | ], 84 | "engines": { 85 | "node": ">=12" 86 | } 87 | }, 88 | "node_modules/@esbuild/android-arm64": { 89 | "version": "0.16.17", 90 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", 91 | "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", 92 | "cpu": [ 93 | "arm64" 94 | ], 95 | "dev": true, 96 | "optional": true, 97 | "os": [ 98 | "android" 99 | ], 100 | "engines": { 101 | "node": ">=12" 102 | } 103 | }, 104 | "node_modules/@esbuild/android-x64": { 105 | "version": "0.16.17", 106 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", 107 | "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", 108 | "cpu": [ 109 | "x64" 110 | ], 111 | "dev": true, 112 | "optional": true, 113 | "os": [ 114 | "android" 115 | ], 116 | "engines": { 117 | "node": ">=12" 118 | } 119 | }, 120 | "node_modules/@esbuild/darwin-arm64": { 121 | "version": "0.16.17", 122 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", 123 | "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", 124 | "cpu": [ 125 | "arm64" 126 | ], 127 | "dev": true, 128 | "optional": true, 129 | "os": [ 130 | "darwin" 131 | ], 132 | "engines": { 133 | "node": ">=12" 134 | } 135 | }, 136 | "node_modules/@esbuild/darwin-x64": { 137 | "version": "0.16.17", 138 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", 139 | "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", 140 | "cpu": [ 141 | "x64" 142 | ], 143 | "dev": true, 144 | "optional": true, 145 | "os": [ 146 | "darwin" 147 | ], 148 | "engines": { 149 | "node": ">=12" 150 | } 151 | }, 152 | "node_modules/@esbuild/freebsd-arm64": { 153 | "version": "0.16.17", 154 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", 155 | "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", 156 | "cpu": [ 157 | "arm64" 158 | ], 159 | "dev": true, 160 | "optional": true, 161 | "os": [ 162 | "freebsd" 163 | ], 164 | "engines": { 165 | "node": ">=12" 166 | } 167 | }, 168 | "node_modules/@esbuild/freebsd-x64": { 169 | "version": "0.16.17", 170 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", 171 | "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", 172 | "cpu": [ 173 | "x64" 174 | ], 175 | "dev": true, 176 | "optional": true, 177 | "os": [ 178 | "freebsd" 179 | ], 180 | "engines": { 181 | "node": ">=12" 182 | } 183 | }, 184 | "node_modules/@esbuild/linux-arm": { 185 | "version": "0.16.17", 186 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", 187 | "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", 188 | "cpu": [ 189 | "arm" 190 | ], 191 | "dev": true, 192 | "optional": true, 193 | "os": [ 194 | "linux" 195 | ], 196 | "engines": { 197 | "node": ">=12" 198 | } 199 | }, 200 | "node_modules/@esbuild/linux-arm64": { 201 | "version": "0.16.17", 202 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", 203 | "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", 204 | "cpu": [ 205 | "arm64" 206 | ], 207 | "dev": true, 208 | "optional": true, 209 | "os": [ 210 | "linux" 211 | ], 212 | "engines": { 213 | "node": ">=12" 214 | } 215 | }, 216 | "node_modules/@esbuild/linux-ia32": { 217 | "version": "0.16.17", 218 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", 219 | "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", 220 | "cpu": [ 221 | "ia32" 222 | ], 223 | "dev": true, 224 | "optional": true, 225 | "os": [ 226 | "linux" 227 | ], 228 | "engines": { 229 | "node": ">=12" 230 | } 231 | }, 232 | "node_modules/@esbuild/linux-loong64": { 233 | "version": "0.16.17", 234 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", 235 | "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", 236 | "cpu": [ 237 | "loong64" 238 | ], 239 | "dev": true, 240 | "optional": true, 241 | "os": [ 242 | "linux" 243 | ], 244 | "engines": { 245 | "node": ">=12" 246 | } 247 | }, 248 | "node_modules/@esbuild/linux-mips64el": { 249 | "version": "0.16.17", 250 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", 251 | "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", 252 | "cpu": [ 253 | "mips64el" 254 | ], 255 | "dev": true, 256 | "optional": true, 257 | "os": [ 258 | "linux" 259 | ], 260 | "engines": { 261 | "node": ">=12" 262 | } 263 | }, 264 | "node_modules/@esbuild/linux-ppc64": { 265 | "version": "0.16.17", 266 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", 267 | "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", 268 | "cpu": [ 269 | "ppc64" 270 | ], 271 | "dev": true, 272 | "optional": true, 273 | "os": [ 274 | "linux" 275 | ], 276 | "engines": { 277 | "node": ">=12" 278 | } 279 | }, 280 | "node_modules/@esbuild/linux-riscv64": { 281 | "version": "0.16.17", 282 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", 283 | "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", 284 | "cpu": [ 285 | "riscv64" 286 | ], 287 | "dev": true, 288 | "optional": true, 289 | "os": [ 290 | "linux" 291 | ], 292 | "engines": { 293 | "node": ">=12" 294 | } 295 | }, 296 | "node_modules/@esbuild/linux-s390x": { 297 | "version": "0.16.17", 298 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", 299 | "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", 300 | "cpu": [ 301 | "s390x" 302 | ], 303 | "dev": true, 304 | "optional": true, 305 | "os": [ 306 | "linux" 307 | ], 308 | "engines": { 309 | "node": ">=12" 310 | } 311 | }, 312 | "node_modules/@esbuild/linux-x64": { 313 | "version": "0.16.17", 314 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", 315 | "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", 316 | "cpu": [ 317 | "x64" 318 | ], 319 | "dev": true, 320 | "optional": true, 321 | "os": [ 322 | "linux" 323 | ], 324 | "engines": { 325 | "node": ">=12" 326 | } 327 | }, 328 | "node_modules/@esbuild/netbsd-x64": { 329 | "version": "0.16.17", 330 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", 331 | "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", 332 | "cpu": [ 333 | "x64" 334 | ], 335 | "dev": true, 336 | "optional": true, 337 | "os": [ 338 | "netbsd" 339 | ], 340 | "engines": { 341 | "node": ">=12" 342 | } 343 | }, 344 | "node_modules/@esbuild/openbsd-x64": { 345 | "version": "0.16.17", 346 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", 347 | "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", 348 | "cpu": [ 349 | "x64" 350 | ], 351 | "dev": true, 352 | "optional": true, 353 | "os": [ 354 | "openbsd" 355 | ], 356 | "engines": { 357 | "node": ">=12" 358 | } 359 | }, 360 | "node_modules/@esbuild/sunos-x64": { 361 | "version": "0.16.17", 362 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", 363 | "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", 364 | "cpu": [ 365 | "x64" 366 | ], 367 | "dev": true, 368 | "optional": true, 369 | "os": [ 370 | "sunos" 371 | ], 372 | "engines": { 373 | "node": ">=12" 374 | } 375 | }, 376 | "node_modules/@esbuild/win32-arm64": { 377 | "version": "0.16.17", 378 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", 379 | "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", 380 | "cpu": [ 381 | "arm64" 382 | ], 383 | "dev": true, 384 | "optional": true, 385 | "os": [ 386 | "win32" 387 | ], 388 | "engines": { 389 | "node": ">=12" 390 | } 391 | }, 392 | "node_modules/@esbuild/win32-ia32": { 393 | "version": "0.16.17", 394 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", 395 | "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", 396 | "cpu": [ 397 | "ia32" 398 | ], 399 | "dev": true, 400 | "optional": true, 401 | "os": [ 402 | "win32" 403 | ], 404 | "engines": { 405 | "node": ">=12" 406 | } 407 | }, 408 | "node_modules/@esbuild/win32-x64": { 409 | "version": "0.16.17", 410 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", 411 | "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", 412 | "cpu": [ 413 | "x64" 414 | ], 415 | "dev": true, 416 | "optional": true, 417 | "os": [ 418 | "win32" 419 | ], 420 | "engines": { 421 | "node": ">=12" 422 | } 423 | }, 424 | "node_modules/@eslint/eslintrc": { 425 | "version": "2.0.1", 426 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.1.tgz", 427 | "integrity": "sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==", 428 | "dev": true, 429 | "dependencies": { 430 | "ajv": "^6.12.4", 431 | "debug": "^4.3.2", 432 | "espree": "^9.5.0", 433 | "globals": "^13.19.0", 434 | "ignore": "^5.2.0", 435 | "import-fresh": "^3.2.1", 436 | "js-yaml": "^4.1.0", 437 | "minimatch": "^3.1.2", 438 | "strip-json-comments": "^3.1.1" 439 | }, 440 | "engines": { 441 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 442 | }, 443 | "funding": { 444 | "url": "https://opencollective.com/eslint" 445 | } 446 | }, 447 | "node_modules/@eslint/js": { 448 | "version": "8.35.0", 449 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.35.0.tgz", 450 | "integrity": "sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==", 451 | "dev": true, 452 | "engines": { 453 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 454 | } 455 | }, 456 | "node_modules/@humanwhocodes/config-array": { 457 | "version": "0.11.8", 458 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", 459 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", 460 | "dev": true, 461 | "dependencies": { 462 | "@humanwhocodes/object-schema": "^1.2.1", 463 | "debug": "^4.1.1", 464 | "minimatch": "^3.0.5" 465 | }, 466 | "engines": { 467 | "node": ">=10.10.0" 468 | } 469 | }, 470 | "node_modules/@humanwhocodes/module-importer": { 471 | "version": "1.0.1", 472 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 473 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 474 | "dev": true, 475 | "engines": { 476 | "node": ">=12.22" 477 | }, 478 | "funding": { 479 | "type": "github", 480 | "url": "https://github.com/sponsors/nzakas" 481 | } 482 | }, 483 | "node_modules/@humanwhocodes/object-schema": { 484 | "version": "1.2.1", 485 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 486 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 487 | "dev": true 488 | }, 489 | "node_modules/@mdx-js/mdx": { 490 | "version": "2.3.0", 491 | "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz", 492 | "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", 493 | "dev": true, 494 | "dependencies": { 495 | "@types/estree-jsx": "^1.0.0", 496 | "@types/mdx": "^2.0.0", 497 | "estree-util-build-jsx": "^2.0.0", 498 | "estree-util-is-identifier-name": "^2.0.0", 499 | "estree-util-to-js": "^1.1.0", 500 | "estree-walker": "^3.0.0", 501 | "hast-util-to-estree": "^2.0.0", 502 | "markdown-extensions": "^1.0.0", 503 | "periscopic": "^3.0.0", 504 | "remark-mdx": "^2.0.0", 505 | "remark-parse": "^10.0.0", 506 | "remark-rehype": "^10.0.0", 507 | "unified": "^10.0.0", 508 | "unist-util-position-from-estree": "^1.0.0", 509 | "unist-util-stringify-position": "^3.0.0", 510 | "unist-util-visit": "^4.0.0", 511 | "vfile": "^5.0.0" 512 | }, 513 | "funding": { 514 | "type": "opencollective", 515 | "url": "https://opencollective.com/unified" 516 | } 517 | }, 518 | "node_modules/@nodelib/fs.scandir": { 519 | "version": "2.1.5", 520 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 521 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 522 | "dev": true, 523 | "dependencies": { 524 | "@nodelib/fs.stat": "2.0.5", 525 | "run-parallel": "^1.1.9" 526 | }, 527 | "engines": { 528 | "node": ">= 8" 529 | } 530 | }, 531 | "node_modules/@nodelib/fs.stat": { 532 | "version": "2.0.5", 533 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 534 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 535 | "dev": true, 536 | "engines": { 537 | "node": ">= 8" 538 | } 539 | }, 540 | "node_modules/@nodelib/fs.walk": { 541 | "version": "1.2.8", 542 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 543 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 544 | "dev": true, 545 | "dependencies": { 546 | "@nodelib/fs.scandir": "2.1.5", 547 | "fastq": "^1.6.0" 548 | }, 549 | "engines": { 550 | "node": ">= 8" 551 | } 552 | }, 553 | "node_modules/@types/acorn": { 554 | "version": "4.0.6", 555 | "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", 556 | "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", 557 | "dev": true, 558 | "dependencies": { 559 | "@types/estree": "*" 560 | } 561 | }, 562 | "node_modules/@types/debug": { 563 | "version": "4.1.7", 564 | "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", 565 | "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", 566 | "dev": true, 567 | "dependencies": { 568 | "@types/ms": "*" 569 | } 570 | }, 571 | "node_modules/@types/eslint": { 572 | "version": "8.21.1", 573 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz", 574 | "integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==", 575 | "dev": true, 576 | "dependencies": { 577 | "@types/estree": "*", 578 | "@types/json-schema": "*" 579 | } 580 | }, 581 | "node_modules/@types/estree": { 582 | "version": "1.0.0", 583 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", 584 | "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", 585 | "dev": true 586 | }, 587 | "node_modules/@types/estree-jsx": { 588 | "version": "1.0.0", 589 | "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", 590 | "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", 591 | "dev": true, 592 | "dependencies": { 593 | "@types/estree": "*" 594 | } 595 | }, 596 | "node_modules/@types/hast": { 597 | "version": "2.3.4", 598 | "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", 599 | "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", 600 | "dev": true, 601 | "dependencies": { 602 | "@types/unist": "*" 603 | } 604 | }, 605 | "node_modules/@types/json-schema": { 606 | "version": "7.0.11", 607 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 608 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 609 | "dev": true 610 | }, 611 | "node_modules/@types/mdast": { 612 | "version": "3.0.10", 613 | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", 614 | "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", 615 | "dev": true, 616 | "dependencies": { 617 | "@types/unist": "*" 618 | } 619 | }, 620 | "node_modules/@types/mdx": { 621 | "version": "2.0.3", 622 | "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz", 623 | "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==", 624 | "dev": true 625 | }, 626 | "node_modules/@types/ms": { 627 | "version": "0.7.31", 628 | "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", 629 | "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", 630 | "dev": true 631 | }, 632 | "node_modules/@types/node": { 633 | "version": "18.15.3", 634 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.3.tgz", 635 | "integrity": "sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==", 636 | "dev": true 637 | }, 638 | "node_modules/@types/node-fetch": { 639 | "version": "2.6.2", 640 | "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", 641 | "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", 642 | "dev": true, 643 | "dependencies": { 644 | "@types/node": "*", 645 | "form-data": "^3.0.0" 646 | } 647 | }, 648 | "node_modules/@types/semver": { 649 | "version": "7.3.13", 650 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", 651 | "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", 652 | "dev": true 653 | }, 654 | "node_modules/@types/unist": { 655 | "version": "2.0.6", 656 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", 657 | "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", 658 | "dev": true 659 | }, 660 | "node_modules/@typescript-eslint/eslint-plugin": { 661 | "version": "5.54.0", 662 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.0.tgz", 663 | "integrity": "sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==", 664 | "dev": true, 665 | "dependencies": { 666 | "@typescript-eslint/scope-manager": "5.54.0", 667 | "@typescript-eslint/type-utils": "5.54.0", 668 | "@typescript-eslint/utils": "5.54.0", 669 | "debug": "^4.3.4", 670 | "grapheme-splitter": "^1.0.4", 671 | "ignore": "^5.2.0", 672 | "natural-compare-lite": "^1.4.0", 673 | "regexpp": "^3.2.0", 674 | "semver": "^7.3.7", 675 | "tsutils": "^3.21.0" 676 | }, 677 | "engines": { 678 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 679 | }, 680 | "funding": { 681 | "type": "opencollective", 682 | "url": "https://opencollective.com/typescript-eslint" 683 | }, 684 | "peerDependencies": { 685 | "@typescript-eslint/parser": "^5.0.0", 686 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 687 | }, 688 | "peerDependenciesMeta": { 689 | "typescript": { 690 | "optional": true 691 | } 692 | } 693 | }, 694 | "node_modules/@typescript-eslint/parser": { 695 | "version": "5.54.0", 696 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.0.tgz", 697 | "integrity": "sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==", 698 | "dev": true, 699 | "dependencies": { 700 | "@typescript-eslint/scope-manager": "5.54.0", 701 | "@typescript-eslint/types": "5.54.0", 702 | "@typescript-eslint/typescript-estree": "5.54.0", 703 | "debug": "^4.3.4" 704 | }, 705 | "engines": { 706 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 707 | }, 708 | "funding": { 709 | "type": "opencollective", 710 | "url": "https://opencollective.com/typescript-eslint" 711 | }, 712 | "peerDependencies": { 713 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 714 | }, 715 | "peerDependenciesMeta": { 716 | "typescript": { 717 | "optional": true 718 | } 719 | } 720 | }, 721 | "node_modules/@typescript-eslint/scope-manager": { 722 | "version": "5.54.0", 723 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.0.tgz", 724 | "integrity": "sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==", 725 | "dev": true, 726 | "dependencies": { 727 | "@typescript-eslint/types": "5.54.0", 728 | "@typescript-eslint/visitor-keys": "5.54.0" 729 | }, 730 | "engines": { 731 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 732 | }, 733 | "funding": { 734 | "type": "opencollective", 735 | "url": "https://opencollective.com/typescript-eslint" 736 | } 737 | }, 738 | "node_modules/@typescript-eslint/type-utils": { 739 | "version": "5.54.0", 740 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.0.tgz", 741 | "integrity": "sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==", 742 | "dev": true, 743 | "dependencies": { 744 | "@typescript-eslint/typescript-estree": "5.54.0", 745 | "@typescript-eslint/utils": "5.54.0", 746 | "debug": "^4.3.4", 747 | "tsutils": "^3.21.0" 748 | }, 749 | "engines": { 750 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 751 | }, 752 | "funding": { 753 | "type": "opencollective", 754 | "url": "https://opencollective.com/typescript-eslint" 755 | }, 756 | "peerDependencies": { 757 | "eslint": "*" 758 | }, 759 | "peerDependenciesMeta": { 760 | "typescript": { 761 | "optional": true 762 | } 763 | } 764 | }, 765 | "node_modules/@typescript-eslint/types": { 766 | "version": "5.54.0", 767 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.0.tgz", 768 | "integrity": "sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==", 769 | "dev": true, 770 | "engines": { 771 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 772 | }, 773 | "funding": { 774 | "type": "opencollective", 775 | "url": "https://opencollective.com/typescript-eslint" 776 | } 777 | }, 778 | "node_modules/@typescript-eslint/typescript-estree": { 779 | "version": "5.54.0", 780 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.0.tgz", 781 | "integrity": "sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==", 782 | "dev": true, 783 | "dependencies": { 784 | "@typescript-eslint/types": "5.54.0", 785 | "@typescript-eslint/visitor-keys": "5.54.0", 786 | "debug": "^4.3.4", 787 | "globby": "^11.1.0", 788 | "is-glob": "^4.0.3", 789 | "semver": "^7.3.7", 790 | "tsutils": "^3.21.0" 791 | }, 792 | "engines": { 793 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 794 | }, 795 | "funding": { 796 | "type": "opencollective", 797 | "url": "https://opencollective.com/typescript-eslint" 798 | }, 799 | "peerDependenciesMeta": { 800 | "typescript": { 801 | "optional": true 802 | } 803 | } 804 | }, 805 | "node_modules/@typescript-eslint/utils": { 806 | "version": "5.54.0", 807 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.0.tgz", 808 | "integrity": "sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==", 809 | "dev": true, 810 | "dependencies": { 811 | "@types/json-schema": "^7.0.9", 812 | "@types/semver": "^7.3.12", 813 | "@typescript-eslint/scope-manager": "5.54.0", 814 | "@typescript-eslint/types": "5.54.0", 815 | "@typescript-eslint/typescript-estree": "5.54.0", 816 | "eslint-scope": "^5.1.1", 817 | "eslint-utils": "^3.0.0", 818 | "semver": "^7.3.7" 819 | }, 820 | "engines": { 821 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 822 | }, 823 | "funding": { 824 | "type": "opencollective", 825 | "url": "https://opencollective.com/typescript-eslint" 826 | }, 827 | "peerDependencies": { 828 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 829 | } 830 | }, 831 | "node_modules/@typescript-eslint/visitor-keys": { 832 | "version": "5.54.0", 833 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.0.tgz", 834 | "integrity": "sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==", 835 | "dev": true, 836 | "dependencies": { 837 | "@typescript-eslint/types": "5.54.0", 838 | "eslint-visitor-keys": "^3.3.0" 839 | }, 840 | "engines": { 841 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 842 | }, 843 | "funding": { 844 | "type": "opencollective", 845 | "url": "https://opencollective.com/typescript-eslint" 846 | } 847 | }, 848 | "node_modules/@zeit/schemas": { 849 | "version": "2.29.0", 850 | "resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.29.0.tgz", 851 | "integrity": "sha512-g5QiLIfbg3pLuYUJPlisNKY+epQJTcMDsOnVNkscrDP1oi7vmJnzOANYJI/1pZcVJ6umUkBv3aFtlg1UvUHGzA==" 852 | }, 853 | "node_modules/accepts": { 854 | "version": "1.3.8", 855 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 856 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 857 | "dependencies": { 858 | "mime-types": "~2.1.34", 859 | "negotiator": "0.6.3" 860 | }, 861 | "engines": { 862 | "node": ">= 0.6" 863 | } 864 | }, 865 | "node_modules/acorn": { 866 | "version": "8.8.2", 867 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 868 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 869 | "dev": true, 870 | "bin": { 871 | "acorn": "bin/acorn" 872 | }, 873 | "engines": { 874 | "node": ">=0.4.0" 875 | } 876 | }, 877 | "node_modules/acorn-jsx": { 878 | "version": "5.3.2", 879 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 880 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 881 | "dev": true, 882 | "peerDependencies": { 883 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 884 | } 885 | }, 886 | "node_modules/ajv": { 887 | "version": "6.12.6", 888 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 889 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 890 | "dev": true, 891 | "dependencies": { 892 | "fast-deep-equal": "^3.1.1", 893 | "fast-json-stable-stringify": "^2.0.0", 894 | "json-schema-traverse": "^0.4.1", 895 | "uri-js": "^4.2.2" 896 | }, 897 | "funding": { 898 | "type": "github", 899 | "url": "https://github.com/sponsors/epoberezkin" 900 | } 901 | }, 902 | "node_modules/ansi-align": { 903 | "version": "3.0.1", 904 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", 905 | "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", 906 | "dependencies": { 907 | "string-width": "^4.1.0" 908 | } 909 | }, 910 | "node_modules/ansi-align/node_modules/emoji-regex": { 911 | "version": "8.0.0", 912 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 913 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 914 | }, 915 | "node_modules/ansi-align/node_modules/string-width": { 916 | "version": "4.2.3", 917 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 918 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 919 | "dependencies": { 920 | "emoji-regex": "^8.0.0", 921 | "is-fullwidth-code-point": "^3.0.0", 922 | "strip-ansi": "^6.0.1" 923 | }, 924 | "engines": { 925 | "node": ">=8" 926 | } 927 | }, 928 | "node_modules/ansi-regex": { 929 | "version": "5.0.1", 930 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 931 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 932 | "engines": { 933 | "node": ">=8" 934 | } 935 | }, 936 | "node_modules/ansi-styles": { 937 | "version": "4.3.0", 938 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 939 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 940 | "dependencies": { 941 | "color-convert": "^2.0.1" 942 | }, 943 | "engines": { 944 | "node": ">=8" 945 | }, 946 | "funding": { 947 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 948 | } 949 | }, 950 | "node_modules/any-promise": { 951 | "version": "1.3.0", 952 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 953 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 954 | "dev": true 955 | }, 956 | "node_modules/arch": { 957 | "version": "2.2.0", 958 | "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", 959 | "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", 960 | "funding": [ 961 | { 962 | "type": "github", 963 | "url": "https://github.com/sponsors/feross" 964 | }, 965 | { 966 | "type": "patreon", 967 | "url": "https://www.patreon.com/feross" 968 | }, 969 | { 970 | "type": "consulting", 971 | "url": "https://feross.org/support" 972 | } 973 | ] 974 | }, 975 | "node_modules/arg": { 976 | "version": "5.0.2", 977 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 978 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 979 | }, 980 | "node_modules/argparse": { 981 | "version": "2.0.1", 982 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 983 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 984 | "dev": true 985 | }, 986 | "node_modules/array-union": { 987 | "version": "2.1.0", 988 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 989 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 990 | "dev": true, 991 | "engines": { 992 | "node": ">=8" 993 | } 994 | }, 995 | "node_modules/astring": { 996 | "version": "1.8.4", 997 | "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz", 998 | "integrity": "sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==", 999 | "dev": true, 1000 | "bin": { 1001 | "astring": "bin/astring" 1002 | } 1003 | }, 1004 | "node_modules/asynckit": { 1005 | "version": "0.4.0", 1006 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 1007 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 1008 | "dev": true 1009 | }, 1010 | "node_modules/bail": { 1011 | "version": "2.0.2", 1012 | "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 1013 | "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 1014 | "dev": true, 1015 | "funding": { 1016 | "type": "github", 1017 | "url": "https://github.com/sponsors/wooorm" 1018 | } 1019 | }, 1020 | "node_modules/balanced-match": { 1021 | "version": "1.0.2", 1022 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1023 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1024 | }, 1025 | "node_modules/boxen": { 1026 | "version": "7.0.0", 1027 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.0.tgz", 1028 | "integrity": "sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==", 1029 | "dependencies": { 1030 | "ansi-align": "^3.0.1", 1031 | "camelcase": "^7.0.0", 1032 | "chalk": "^5.0.1", 1033 | "cli-boxes": "^3.0.0", 1034 | "string-width": "^5.1.2", 1035 | "type-fest": "^2.13.0", 1036 | "widest-line": "^4.0.1", 1037 | "wrap-ansi": "^8.0.1" 1038 | }, 1039 | "engines": { 1040 | "node": ">=14.16" 1041 | }, 1042 | "funding": { 1043 | "url": "https://github.com/sponsors/sindresorhus" 1044 | } 1045 | }, 1046 | "node_modules/boxen/node_modules/chalk": { 1047 | "version": "5.2.0", 1048 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", 1049 | "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", 1050 | "engines": { 1051 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 1052 | }, 1053 | "funding": { 1054 | "url": "https://github.com/chalk/chalk?sponsor=1" 1055 | } 1056 | }, 1057 | "node_modules/boxen/node_modules/type-fest": { 1058 | "version": "2.19.0", 1059 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", 1060 | "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", 1061 | "engines": { 1062 | "node": ">=12.20" 1063 | }, 1064 | "funding": { 1065 | "url": "https://github.com/sponsors/sindresorhus" 1066 | } 1067 | }, 1068 | "node_modules/brace-expansion": { 1069 | "version": "1.1.11", 1070 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1071 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1072 | "dependencies": { 1073 | "balanced-match": "^1.0.0", 1074 | "concat-map": "0.0.1" 1075 | } 1076 | }, 1077 | "node_modules/braces": { 1078 | "version": "3.0.2", 1079 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1080 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1081 | "dev": true, 1082 | "dependencies": { 1083 | "fill-range": "^7.0.1" 1084 | }, 1085 | "engines": { 1086 | "node": ">=8" 1087 | } 1088 | }, 1089 | "node_modules/busboy": { 1090 | "version": "1.6.0", 1091 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 1092 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 1093 | "dev": true, 1094 | "dependencies": { 1095 | "streamsearch": "^1.1.0" 1096 | }, 1097 | "engines": { 1098 | "node": ">=10.16.0" 1099 | } 1100 | }, 1101 | "node_modules/bytes": { 1102 | "version": "3.0.0", 1103 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", 1104 | "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", 1105 | "engines": { 1106 | "node": ">= 0.8" 1107 | } 1108 | }, 1109 | "node_modules/callsites": { 1110 | "version": "3.1.0", 1111 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1112 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1113 | "dev": true, 1114 | "engines": { 1115 | "node": ">=6" 1116 | } 1117 | }, 1118 | "node_modules/camelcase": { 1119 | "version": "7.0.1", 1120 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", 1121 | "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", 1122 | "engines": { 1123 | "node": ">=14.16" 1124 | }, 1125 | "funding": { 1126 | "url": "https://github.com/sponsors/sindresorhus" 1127 | } 1128 | }, 1129 | "node_modules/ccount": { 1130 | "version": "2.0.1", 1131 | "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 1132 | "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 1133 | "dev": true, 1134 | "funding": { 1135 | "type": "github", 1136 | "url": "https://github.com/sponsors/wooorm" 1137 | } 1138 | }, 1139 | "node_modules/chalk": { 1140 | "version": "4.1.2", 1141 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1142 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1143 | "dependencies": { 1144 | "ansi-styles": "^4.1.0", 1145 | "supports-color": "^7.1.0" 1146 | }, 1147 | "engines": { 1148 | "node": ">=10" 1149 | }, 1150 | "funding": { 1151 | "url": "https://github.com/chalk/chalk?sponsor=1" 1152 | } 1153 | }, 1154 | "node_modules/chalk-template": { 1155 | "version": "0.4.0", 1156 | "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz", 1157 | "integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==", 1158 | "dependencies": { 1159 | "chalk": "^4.1.2" 1160 | }, 1161 | "engines": { 1162 | "node": ">=12" 1163 | }, 1164 | "funding": { 1165 | "url": "https://github.com/chalk/chalk-template?sponsor=1" 1166 | } 1167 | }, 1168 | "node_modules/character-entities": { 1169 | "version": "2.0.2", 1170 | "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 1171 | "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 1172 | "dev": true, 1173 | "funding": { 1174 | "type": "github", 1175 | "url": "https://github.com/sponsors/wooorm" 1176 | } 1177 | }, 1178 | "node_modules/character-entities-html4": { 1179 | "version": "2.1.0", 1180 | "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 1181 | "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 1182 | "dev": true, 1183 | "funding": { 1184 | "type": "github", 1185 | "url": "https://github.com/sponsors/wooorm" 1186 | } 1187 | }, 1188 | "node_modules/character-entities-legacy": { 1189 | "version": "3.0.0", 1190 | "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 1191 | "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 1192 | "dev": true, 1193 | "funding": { 1194 | "type": "github", 1195 | "url": "https://github.com/sponsors/wooorm" 1196 | } 1197 | }, 1198 | "node_modules/character-reference-invalid": { 1199 | "version": "2.0.1", 1200 | "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", 1201 | "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", 1202 | "dev": true, 1203 | "funding": { 1204 | "type": "github", 1205 | "url": "https://github.com/sponsors/wooorm" 1206 | } 1207 | }, 1208 | "node_modules/cli-boxes": { 1209 | "version": "3.0.0", 1210 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", 1211 | "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", 1212 | "engines": { 1213 | "node": ">=10" 1214 | }, 1215 | "funding": { 1216 | "url": "https://github.com/sponsors/sindresorhus" 1217 | } 1218 | }, 1219 | "node_modules/clipboardy": { 1220 | "version": "3.0.0", 1221 | "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz", 1222 | "integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==", 1223 | "dependencies": { 1224 | "arch": "^2.2.0", 1225 | "execa": "^5.1.1", 1226 | "is-wsl": "^2.2.0" 1227 | }, 1228 | "engines": { 1229 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1230 | }, 1231 | "funding": { 1232 | "url": "https://github.com/sponsors/sindresorhus" 1233 | } 1234 | }, 1235 | "node_modules/color-convert": { 1236 | "version": "2.0.1", 1237 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1238 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1239 | "dependencies": { 1240 | "color-name": "~1.1.4" 1241 | }, 1242 | "engines": { 1243 | "node": ">=7.0.0" 1244 | } 1245 | }, 1246 | "node_modules/color-name": { 1247 | "version": "1.1.4", 1248 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1249 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1250 | }, 1251 | "node_modules/combined-stream": { 1252 | "version": "1.0.8", 1253 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1254 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1255 | "dev": true, 1256 | "dependencies": { 1257 | "delayed-stream": "~1.0.0" 1258 | }, 1259 | "engines": { 1260 | "node": ">= 0.8" 1261 | } 1262 | }, 1263 | "node_modules/comma-separated-tokens": { 1264 | "version": "2.0.3", 1265 | "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", 1266 | "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", 1267 | "dev": true, 1268 | "funding": { 1269 | "type": "github", 1270 | "url": "https://github.com/sponsors/wooorm" 1271 | } 1272 | }, 1273 | "node_modules/commander": { 1274 | "version": "4.1.1", 1275 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1276 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1277 | "dev": true, 1278 | "engines": { 1279 | "node": ">= 6" 1280 | } 1281 | }, 1282 | "node_modules/compressible": { 1283 | "version": "2.0.18", 1284 | "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", 1285 | "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", 1286 | "dependencies": { 1287 | "mime-db": ">= 1.43.0 < 2" 1288 | }, 1289 | "engines": { 1290 | "node": ">= 0.6" 1291 | } 1292 | }, 1293 | "node_modules/compression": { 1294 | "version": "1.7.4", 1295 | "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", 1296 | "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", 1297 | "dependencies": { 1298 | "accepts": "~1.3.5", 1299 | "bytes": "3.0.0", 1300 | "compressible": "~2.0.16", 1301 | "debug": "2.6.9", 1302 | "on-headers": "~1.0.2", 1303 | "safe-buffer": "5.1.2", 1304 | "vary": "~1.1.2" 1305 | }, 1306 | "engines": { 1307 | "node": ">= 0.8.0" 1308 | } 1309 | }, 1310 | "node_modules/compression/node_modules/debug": { 1311 | "version": "2.6.9", 1312 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1313 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1314 | "dependencies": { 1315 | "ms": "2.0.0" 1316 | } 1317 | }, 1318 | "node_modules/compression/node_modules/ms": { 1319 | "version": "2.0.0", 1320 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1321 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1322 | }, 1323 | "node_modules/concat-map": { 1324 | "version": "0.0.1", 1325 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1326 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1327 | }, 1328 | "node_modules/content-disposition": { 1329 | "version": "0.5.2", 1330 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", 1331 | "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", 1332 | "engines": { 1333 | "node": ">= 0.6" 1334 | } 1335 | }, 1336 | "node_modules/cross-spawn": { 1337 | "version": "7.0.3", 1338 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1339 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1340 | "dependencies": { 1341 | "path-key": "^3.1.0", 1342 | "shebang-command": "^2.0.0", 1343 | "which": "^2.0.1" 1344 | }, 1345 | "engines": { 1346 | "node": ">= 8" 1347 | } 1348 | }, 1349 | "node_modules/data-uri-to-buffer": { 1350 | "version": "4.0.1", 1351 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", 1352 | "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", 1353 | "dev": true, 1354 | "engines": { 1355 | "node": ">= 12" 1356 | } 1357 | }, 1358 | "node_modules/debug": { 1359 | "version": "4.3.4", 1360 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1361 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1362 | "dev": true, 1363 | "dependencies": { 1364 | "ms": "2.1.2" 1365 | }, 1366 | "engines": { 1367 | "node": ">=6.0" 1368 | }, 1369 | "peerDependenciesMeta": { 1370 | "supports-color": { 1371 | "optional": true 1372 | } 1373 | } 1374 | }, 1375 | "node_modules/decode-named-character-reference": { 1376 | "version": "1.0.2", 1377 | "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", 1378 | "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", 1379 | "dev": true, 1380 | "dependencies": { 1381 | "character-entities": "^2.0.0" 1382 | }, 1383 | "funding": { 1384 | "type": "github", 1385 | "url": "https://github.com/sponsors/wooorm" 1386 | } 1387 | }, 1388 | "node_modules/deep-extend": { 1389 | "version": "0.6.0", 1390 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 1391 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", 1392 | "engines": { 1393 | "node": ">=4.0.0" 1394 | } 1395 | }, 1396 | "node_modules/deep-is": { 1397 | "version": "0.1.4", 1398 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1399 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1400 | "dev": true 1401 | }, 1402 | "node_modules/delayed-stream": { 1403 | "version": "1.0.0", 1404 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1405 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1406 | "dev": true, 1407 | "engines": { 1408 | "node": ">=0.4.0" 1409 | } 1410 | }, 1411 | "node_modules/dequal": { 1412 | "version": "2.0.3", 1413 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1414 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1415 | "dev": true, 1416 | "engines": { 1417 | "node": ">=6" 1418 | } 1419 | }, 1420 | "node_modules/diff": { 1421 | "version": "5.1.0", 1422 | "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", 1423 | "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", 1424 | "dev": true, 1425 | "engines": { 1426 | "node": ">=0.3.1" 1427 | } 1428 | }, 1429 | "node_modules/dir-glob": { 1430 | "version": "3.0.1", 1431 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1432 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1433 | "dev": true, 1434 | "dependencies": { 1435 | "path-type": "^4.0.0" 1436 | }, 1437 | "engines": { 1438 | "node": ">=8" 1439 | } 1440 | }, 1441 | "node_modules/doctrine": { 1442 | "version": "3.0.0", 1443 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1444 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1445 | "dev": true, 1446 | "dependencies": { 1447 | "esutils": "^2.0.2" 1448 | }, 1449 | "engines": { 1450 | "node": ">=6.0.0" 1451 | } 1452 | }, 1453 | "node_modules/eastasianwidth": { 1454 | "version": "0.2.0", 1455 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1456 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" 1457 | }, 1458 | "node_modules/emoji-regex": { 1459 | "version": "9.2.2", 1460 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1461 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1462 | }, 1463 | "node_modules/esbuild": { 1464 | "version": "0.16.17", 1465 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", 1466 | "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", 1467 | "dev": true, 1468 | "hasInstallScript": true, 1469 | "bin": { 1470 | "esbuild": "bin/esbuild" 1471 | }, 1472 | "engines": { 1473 | "node": ">=12" 1474 | }, 1475 | "optionalDependencies": { 1476 | "@esbuild/android-arm": "0.16.17", 1477 | "@esbuild/android-arm64": "0.16.17", 1478 | "@esbuild/android-x64": "0.16.17", 1479 | "@esbuild/darwin-arm64": "0.16.17", 1480 | "@esbuild/darwin-x64": "0.16.17", 1481 | "@esbuild/freebsd-arm64": "0.16.17", 1482 | "@esbuild/freebsd-x64": "0.16.17", 1483 | "@esbuild/linux-arm": "0.16.17", 1484 | "@esbuild/linux-arm64": "0.16.17", 1485 | "@esbuild/linux-ia32": "0.16.17", 1486 | "@esbuild/linux-loong64": "0.16.17", 1487 | "@esbuild/linux-mips64el": "0.16.17", 1488 | "@esbuild/linux-ppc64": "0.16.17", 1489 | "@esbuild/linux-riscv64": "0.16.17", 1490 | "@esbuild/linux-s390x": "0.16.17", 1491 | "@esbuild/linux-x64": "0.16.17", 1492 | "@esbuild/netbsd-x64": "0.16.17", 1493 | "@esbuild/openbsd-x64": "0.16.17", 1494 | "@esbuild/sunos-x64": "0.16.17", 1495 | "@esbuild/win32-arm64": "0.16.17", 1496 | "@esbuild/win32-ia32": "0.16.17", 1497 | "@esbuild/win32-x64": "0.16.17" 1498 | } 1499 | }, 1500 | "node_modules/escape-string-regexp": { 1501 | "version": "4.0.0", 1502 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1503 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1504 | "dev": true, 1505 | "engines": { 1506 | "node": ">=10" 1507 | }, 1508 | "funding": { 1509 | "url": "https://github.com/sponsors/sindresorhus" 1510 | } 1511 | }, 1512 | "node_modules/eslint": { 1513 | "version": "8.35.0", 1514 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.35.0.tgz", 1515 | "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==", 1516 | "dev": true, 1517 | "dependencies": { 1518 | "@eslint/eslintrc": "^2.0.0", 1519 | "@eslint/js": "8.35.0", 1520 | "@humanwhocodes/config-array": "^0.11.8", 1521 | "@humanwhocodes/module-importer": "^1.0.1", 1522 | "@nodelib/fs.walk": "^1.2.8", 1523 | "ajv": "^6.10.0", 1524 | "chalk": "^4.0.0", 1525 | "cross-spawn": "^7.0.2", 1526 | "debug": "^4.3.2", 1527 | "doctrine": "^3.0.0", 1528 | "escape-string-regexp": "^4.0.0", 1529 | "eslint-scope": "^7.1.1", 1530 | "eslint-utils": "^3.0.0", 1531 | "eslint-visitor-keys": "^3.3.0", 1532 | "espree": "^9.4.0", 1533 | "esquery": "^1.4.2", 1534 | "esutils": "^2.0.2", 1535 | "fast-deep-equal": "^3.1.3", 1536 | "file-entry-cache": "^6.0.1", 1537 | "find-up": "^5.0.0", 1538 | "glob-parent": "^6.0.2", 1539 | "globals": "^13.19.0", 1540 | "grapheme-splitter": "^1.0.4", 1541 | "ignore": "^5.2.0", 1542 | "import-fresh": "^3.0.0", 1543 | "imurmurhash": "^0.1.4", 1544 | "is-glob": "^4.0.0", 1545 | "is-path-inside": "^3.0.3", 1546 | "js-sdsl": "^4.1.4", 1547 | "js-yaml": "^4.1.0", 1548 | "json-stable-stringify-without-jsonify": "^1.0.1", 1549 | "levn": "^0.4.1", 1550 | "lodash.merge": "^4.6.2", 1551 | "minimatch": "^3.1.2", 1552 | "natural-compare": "^1.4.0", 1553 | "optionator": "^0.9.1", 1554 | "regexpp": "^3.2.0", 1555 | "strip-ansi": "^6.0.1", 1556 | "strip-json-comments": "^3.1.0", 1557 | "text-table": "^0.2.0" 1558 | }, 1559 | "bin": { 1560 | "eslint": "bin/eslint.js" 1561 | }, 1562 | "engines": { 1563 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1564 | }, 1565 | "funding": { 1566 | "url": "https://opencollective.com/eslint" 1567 | } 1568 | }, 1569 | "node_modules/eslint-plugin-qwik": { 1570 | "version": "0.21.0", 1571 | "resolved": "https://registry.npmjs.org/eslint-plugin-qwik/-/eslint-plugin-qwik-0.21.0.tgz", 1572 | "integrity": "sha512-hT+n+PG3PHTKieQUcn3jGwWsxdqXL45pYFLKN2wvqyaesKMDEYQl4l82xAUTn9pAoJMSoF0rHsutOC6pUrplhg==", 1573 | "dev": true, 1574 | "engines": { 1575 | "node": ">=16" 1576 | }, 1577 | "peerDependencies": { 1578 | "eslint": ">= 8" 1579 | } 1580 | }, 1581 | "node_modules/eslint-scope": { 1582 | "version": "5.1.1", 1583 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1584 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1585 | "dev": true, 1586 | "dependencies": { 1587 | "esrecurse": "^4.3.0", 1588 | "estraverse": "^4.1.1" 1589 | }, 1590 | "engines": { 1591 | "node": ">=8.0.0" 1592 | } 1593 | }, 1594 | "node_modules/eslint-utils": { 1595 | "version": "3.0.0", 1596 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 1597 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1598 | "dev": true, 1599 | "dependencies": { 1600 | "eslint-visitor-keys": "^2.0.0" 1601 | }, 1602 | "engines": { 1603 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1604 | }, 1605 | "funding": { 1606 | "url": "https://github.com/sponsors/mysticatea" 1607 | }, 1608 | "peerDependencies": { 1609 | "eslint": ">=5" 1610 | } 1611 | }, 1612 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1613 | "version": "2.1.0", 1614 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1615 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1616 | "dev": true, 1617 | "engines": { 1618 | "node": ">=10" 1619 | } 1620 | }, 1621 | "node_modules/eslint-visitor-keys": { 1622 | "version": "3.3.0", 1623 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", 1624 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", 1625 | "dev": true, 1626 | "engines": { 1627 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1628 | } 1629 | }, 1630 | "node_modules/eslint/node_modules/eslint-scope": { 1631 | "version": "7.1.1", 1632 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 1633 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 1634 | "dev": true, 1635 | "dependencies": { 1636 | "esrecurse": "^4.3.0", 1637 | "estraverse": "^5.2.0" 1638 | }, 1639 | "engines": { 1640 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1641 | } 1642 | }, 1643 | "node_modules/eslint/node_modules/estraverse": { 1644 | "version": "5.3.0", 1645 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1646 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1647 | "dev": true, 1648 | "engines": { 1649 | "node": ">=4.0" 1650 | } 1651 | }, 1652 | "node_modules/espree": { 1653 | "version": "9.5.0", 1654 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.0.tgz", 1655 | "integrity": "sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==", 1656 | "dev": true, 1657 | "dependencies": { 1658 | "acorn": "^8.8.0", 1659 | "acorn-jsx": "^5.3.2", 1660 | "eslint-visitor-keys": "^3.3.0" 1661 | }, 1662 | "engines": { 1663 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1664 | }, 1665 | "funding": { 1666 | "url": "https://opencollective.com/eslint" 1667 | } 1668 | }, 1669 | "node_modules/esquery": { 1670 | "version": "1.5.0", 1671 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1672 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1673 | "dev": true, 1674 | "dependencies": { 1675 | "estraverse": "^5.1.0" 1676 | }, 1677 | "engines": { 1678 | "node": ">=0.10" 1679 | } 1680 | }, 1681 | "node_modules/esquery/node_modules/estraverse": { 1682 | "version": "5.3.0", 1683 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1684 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1685 | "dev": true, 1686 | "engines": { 1687 | "node": ">=4.0" 1688 | } 1689 | }, 1690 | "node_modules/esrecurse": { 1691 | "version": "4.3.0", 1692 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1693 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1694 | "dev": true, 1695 | "dependencies": { 1696 | "estraverse": "^5.2.0" 1697 | }, 1698 | "engines": { 1699 | "node": ">=4.0" 1700 | } 1701 | }, 1702 | "node_modules/esrecurse/node_modules/estraverse": { 1703 | "version": "5.3.0", 1704 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1705 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1706 | "dev": true, 1707 | "engines": { 1708 | "node": ">=4.0" 1709 | } 1710 | }, 1711 | "node_modules/estraverse": { 1712 | "version": "4.3.0", 1713 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1714 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1715 | "dev": true, 1716 | "engines": { 1717 | "node": ">=4.0" 1718 | } 1719 | }, 1720 | "node_modules/estree-util-attach-comments": { 1721 | "version": "2.1.1", 1722 | "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", 1723 | "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", 1724 | "dev": true, 1725 | "dependencies": { 1726 | "@types/estree": "^1.0.0" 1727 | }, 1728 | "funding": { 1729 | "type": "opencollective", 1730 | "url": "https://opencollective.com/unified" 1731 | } 1732 | }, 1733 | "node_modules/estree-util-build-jsx": { 1734 | "version": "2.2.2", 1735 | "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", 1736 | "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", 1737 | "dev": true, 1738 | "dependencies": { 1739 | "@types/estree-jsx": "^1.0.0", 1740 | "estree-util-is-identifier-name": "^2.0.0", 1741 | "estree-walker": "^3.0.0" 1742 | }, 1743 | "funding": { 1744 | "type": "opencollective", 1745 | "url": "https://opencollective.com/unified" 1746 | } 1747 | }, 1748 | "node_modules/estree-util-is-identifier-name": { 1749 | "version": "2.1.0", 1750 | "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", 1751 | "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", 1752 | "dev": true, 1753 | "funding": { 1754 | "type": "opencollective", 1755 | "url": "https://opencollective.com/unified" 1756 | } 1757 | }, 1758 | "node_modules/estree-util-to-js": { 1759 | "version": "1.2.0", 1760 | "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", 1761 | "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", 1762 | "dev": true, 1763 | "dependencies": { 1764 | "@types/estree-jsx": "^1.0.0", 1765 | "astring": "^1.8.0", 1766 | "source-map": "^0.7.0" 1767 | }, 1768 | "funding": { 1769 | "type": "opencollective", 1770 | "url": "https://opencollective.com/unified" 1771 | } 1772 | }, 1773 | "node_modules/estree-util-visit": { 1774 | "version": "1.2.1", 1775 | "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", 1776 | "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", 1777 | "dev": true, 1778 | "dependencies": { 1779 | "@types/estree-jsx": "^1.0.0", 1780 | "@types/unist": "^2.0.0" 1781 | }, 1782 | "funding": { 1783 | "type": "opencollective", 1784 | "url": "https://opencollective.com/unified" 1785 | } 1786 | }, 1787 | "node_modules/estree-walker": { 1788 | "version": "3.0.3", 1789 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 1790 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 1791 | "dev": true, 1792 | "dependencies": { 1793 | "@types/estree": "^1.0.0" 1794 | } 1795 | }, 1796 | "node_modules/esutils": { 1797 | "version": "2.0.3", 1798 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1799 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1800 | "dev": true, 1801 | "engines": { 1802 | "node": ">=0.10.0" 1803 | } 1804 | }, 1805 | "node_modules/execa": { 1806 | "version": "5.1.1", 1807 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1808 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1809 | "dependencies": { 1810 | "cross-spawn": "^7.0.3", 1811 | "get-stream": "^6.0.0", 1812 | "human-signals": "^2.1.0", 1813 | "is-stream": "^2.0.0", 1814 | "merge-stream": "^2.0.0", 1815 | "npm-run-path": "^4.0.1", 1816 | "onetime": "^5.1.2", 1817 | "signal-exit": "^3.0.3", 1818 | "strip-final-newline": "^2.0.0" 1819 | }, 1820 | "engines": { 1821 | "node": ">=10" 1822 | }, 1823 | "funding": { 1824 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1825 | } 1826 | }, 1827 | "node_modules/extend": { 1828 | "version": "3.0.2", 1829 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1830 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 1831 | "dev": true 1832 | }, 1833 | "node_modules/fast-deep-equal": { 1834 | "version": "3.1.3", 1835 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1836 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1837 | }, 1838 | "node_modules/fast-glob": { 1839 | "version": "3.2.12", 1840 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1841 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1842 | "dev": true, 1843 | "dependencies": { 1844 | "@nodelib/fs.stat": "^2.0.2", 1845 | "@nodelib/fs.walk": "^1.2.3", 1846 | "glob-parent": "^5.1.2", 1847 | "merge2": "^1.3.0", 1848 | "micromatch": "^4.0.4" 1849 | }, 1850 | "engines": { 1851 | "node": ">=8.6.0" 1852 | } 1853 | }, 1854 | "node_modules/fast-glob/node_modules/glob-parent": { 1855 | "version": "5.1.2", 1856 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1857 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1858 | "dev": true, 1859 | "dependencies": { 1860 | "is-glob": "^4.0.1" 1861 | }, 1862 | "engines": { 1863 | "node": ">= 6" 1864 | } 1865 | }, 1866 | "node_modules/fast-json-stable-stringify": { 1867 | "version": "2.1.0", 1868 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1869 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1870 | "dev": true 1871 | }, 1872 | "node_modules/fast-levenshtein": { 1873 | "version": "2.0.6", 1874 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1875 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1876 | "dev": true 1877 | }, 1878 | "node_modules/fast-url-parser": { 1879 | "version": "1.1.3", 1880 | "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", 1881 | "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", 1882 | "dependencies": { 1883 | "punycode": "^1.3.2" 1884 | } 1885 | }, 1886 | "node_modules/fast-url-parser/node_modules/punycode": { 1887 | "version": "1.4.1", 1888 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 1889 | "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" 1890 | }, 1891 | "node_modules/fastq": { 1892 | "version": "1.15.0", 1893 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1894 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1895 | "dev": true, 1896 | "dependencies": { 1897 | "reusify": "^1.0.4" 1898 | } 1899 | }, 1900 | "node_modules/fetch-blob": { 1901 | "version": "3.2.0", 1902 | "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", 1903 | "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", 1904 | "dev": true, 1905 | "funding": [ 1906 | { 1907 | "type": "github", 1908 | "url": "https://github.com/sponsors/jimmywarting" 1909 | }, 1910 | { 1911 | "type": "paypal", 1912 | "url": "https://paypal.me/jimmywarting" 1913 | } 1914 | ], 1915 | "dependencies": { 1916 | "node-domexception": "^1.0.0", 1917 | "web-streams-polyfill": "^3.0.3" 1918 | }, 1919 | "engines": { 1920 | "node": "^12.20 || >= 14.13" 1921 | } 1922 | }, 1923 | "node_modules/file-entry-cache": { 1924 | "version": "6.0.1", 1925 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1926 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1927 | "dev": true, 1928 | "dependencies": { 1929 | "flat-cache": "^3.0.4" 1930 | }, 1931 | "engines": { 1932 | "node": "^10.12.0 || >=12.0.0" 1933 | } 1934 | }, 1935 | "node_modules/fill-range": { 1936 | "version": "7.0.1", 1937 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1938 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1939 | "dev": true, 1940 | "dependencies": { 1941 | "to-regex-range": "^5.0.1" 1942 | }, 1943 | "engines": { 1944 | "node": ">=8" 1945 | } 1946 | }, 1947 | "node_modules/find-up": { 1948 | "version": "5.0.0", 1949 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1950 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1951 | "dev": true, 1952 | "dependencies": { 1953 | "locate-path": "^6.0.0", 1954 | "path-exists": "^4.0.0" 1955 | }, 1956 | "engines": { 1957 | "node": ">=10" 1958 | }, 1959 | "funding": { 1960 | "url": "https://github.com/sponsors/sindresorhus" 1961 | } 1962 | }, 1963 | "node_modules/flat-cache": { 1964 | "version": "3.0.4", 1965 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1966 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1967 | "dev": true, 1968 | "dependencies": { 1969 | "flatted": "^3.1.0", 1970 | "rimraf": "^3.0.2" 1971 | }, 1972 | "engines": { 1973 | "node": "^10.12.0 || >=12.0.0" 1974 | } 1975 | }, 1976 | "node_modules/flatted": { 1977 | "version": "3.2.7", 1978 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1979 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 1980 | "dev": true 1981 | }, 1982 | "node_modules/form-data": { 1983 | "version": "3.0.1", 1984 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", 1985 | "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", 1986 | "dev": true, 1987 | "dependencies": { 1988 | "asynckit": "^0.4.0", 1989 | "combined-stream": "^1.0.8", 1990 | "mime-types": "^2.1.12" 1991 | }, 1992 | "engines": { 1993 | "node": ">= 6" 1994 | } 1995 | }, 1996 | "node_modules/formdata-polyfill": { 1997 | "version": "4.0.10", 1998 | "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", 1999 | "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", 2000 | "dev": true, 2001 | "dependencies": { 2002 | "fetch-blob": "^3.1.2" 2003 | }, 2004 | "engines": { 2005 | "node": ">=12.20.0" 2006 | } 2007 | }, 2008 | "node_modules/fs.realpath": { 2009 | "version": "1.0.0", 2010 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2011 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2012 | "dev": true 2013 | }, 2014 | "node_modules/fsevents": { 2015 | "version": "2.3.2", 2016 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 2017 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 2018 | "dev": true, 2019 | "hasInstallScript": true, 2020 | "optional": true, 2021 | "os": [ 2022 | "darwin" 2023 | ], 2024 | "engines": { 2025 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2026 | } 2027 | }, 2028 | "node_modules/function-bind": { 2029 | "version": "1.1.1", 2030 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 2031 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 2032 | "dev": true 2033 | }, 2034 | "node_modules/get-stream": { 2035 | "version": "6.0.1", 2036 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2037 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2038 | "engines": { 2039 | "node": ">=10" 2040 | }, 2041 | "funding": { 2042 | "url": "https://github.com/sponsors/sindresorhus" 2043 | } 2044 | }, 2045 | "node_modules/glob": { 2046 | "version": "7.2.3", 2047 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2048 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2049 | "dev": true, 2050 | "dependencies": { 2051 | "fs.realpath": "^1.0.0", 2052 | "inflight": "^1.0.4", 2053 | "inherits": "2", 2054 | "minimatch": "^3.1.1", 2055 | "once": "^1.3.0", 2056 | "path-is-absolute": "^1.0.0" 2057 | }, 2058 | "engines": { 2059 | "node": "*" 2060 | }, 2061 | "funding": { 2062 | "url": "https://github.com/sponsors/isaacs" 2063 | } 2064 | }, 2065 | "node_modules/glob-parent": { 2066 | "version": "6.0.2", 2067 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2068 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2069 | "dev": true, 2070 | "dependencies": { 2071 | "is-glob": "^4.0.3" 2072 | }, 2073 | "engines": { 2074 | "node": ">=10.13.0" 2075 | } 2076 | }, 2077 | "node_modules/glob-regex": { 2078 | "version": "0.3.2", 2079 | "resolved": "https://registry.npmjs.org/glob-regex/-/glob-regex-0.3.2.tgz", 2080 | "integrity": "sha512-m5blUd3/OqDTWwzBBtWBPrGlAzatRywHameHeekAZyZrskYouOGdNB8T/q6JucucvJXtOuyHIn0/Yia7iDasDw==", 2081 | "dev": true 2082 | }, 2083 | "node_modules/globals": { 2084 | "version": "13.20.0", 2085 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2086 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2087 | "dev": true, 2088 | "dependencies": { 2089 | "type-fest": "^0.20.2" 2090 | }, 2091 | "engines": { 2092 | "node": ">=8" 2093 | }, 2094 | "funding": { 2095 | "url": "https://github.com/sponsors/sindresorhus" 2096 | } 2097 | }, 2098 | "node_modules/globby": { 2099 | "version": "11.1.0", 2100 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2101 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2102 | "dev": true, 2103 | "dependencies": { 2104 | "array-union": "^2.1.0", 2105 | "dir-glob": "^3.0.1", 2106 | "fast-glob": "^3.2.9", 2107 | "ignore": "^5.2.0", 2108 | "merge2": "^1.4.1", 2109 | "slash": "^3.0.0" 2110 | }, 2111 | "engines": { 2112 | "node": ">=10" 2113 | }, 2114 | "funding": { 2115 | "url": "https://github.com/sponsors/sindresorhus" 2116 | } 2117 | }, 2118 | "node_modules/globrex": { 2119 | "version": "0.1.2", 2120 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 2121 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", 2122 | "dev": true 2123 | }, 2124 | "node_modules/grapheme-splitter": { 2125 | "version": "1.0.4", 2126 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 2127 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 2128 | "dev": true 2129 | }, 2130 | "node_modules/has": { 2131 | "version": "1.0.3", 2132 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2133 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2134 | "dev": true, 2135 | "dependencies": { 2136 | "function-bind": "^1.1.1" 2137 | }, 2138 | "engines": { 2139 | "node": ">= 0.4.0" 2140 | } 2141 | }, 2142 | "node_modules/has-flag": { 2143 | "version": "4.0.0", 2144 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2145 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2146 | "engines": { 2147 | "node": ">=8" 2148 | } 2149 | }, 2150 | "node_modules/hast-util-to-estree": { 2151 | "version": "2.3.2", 2152 | "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", 2153 | "integrity": "sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==", 2154 | "dev": true, 2155 | "dependencies": { 2156 | "@types/estree": "^1.0.0", 2157 | "@types/estree-jsx": "^1.0.0", 2158 | "@types/hast": "^2.0.0", 2159 | "@types/unist": "^2.0.0", 2160 | "comma-separated-tokens": "^2.0.0", 2161 | "estree-util-attach-comments": "^2.0.0", 2162 | "estree-util-is-identifier-name": "^2.0.0", 2163 | "hast-util-whitespace": "^2.0.0", 2164 | "mdast-util-mdx-expression": "^1.0.0", 2165 | "mdast-util-mdxjs-esm": "^1.0.0", 2166 | "property-information": "^6.0.0", 2167 | "space-separated-tokens": "^2.0.0", 2168 | "style-to-object": "^0.4.1", 2169 | "unist-util-position": "^4.0.0", 2170 | "zwitch": "^2.0.0" 2171 | }, 2172 | "funding": { 2173 | "type": "opencollective", 2174 | "url": "https://opencollective.com/unified" 2175 | } 2176 | }, 2177 | "node_modules/hast-util-whitespace": { 2178 | "version": "2.0.1", 2179 | "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", 2180 | "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", 2181 | "dev": true, 2182 | "funding": { 2183 | "type": "opencollective", 2184 | "url": "https://opencollective.com/unified" 2185 | } 2186 | }, 2187 | "node_modules/human-signals": { 2188 | "version": "2.1.0", 2189 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2190 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2191 | "engines": { 2192 | "node": ">=10.17.0" 2193 | } 2194 | }, 2195 | "node_modules/ignore": { 2196 | "version": "5.2.4", 2197 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2198 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2199 | "dev": true, 2200 | "engines": { 2201 | "node": ">= 4" 2202 | } 2203 | }, 2204 | "node_modules/import-fresh": { 2205 | "version": "3.3.0", 2206 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2207 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2208 | "dev": true, 2209 | "dependencies": { 2210 | "parent-module": "^1.0.0", 2211 | "resolve-from": "^4.0.0" 2212 | }, 2213 | "engines": { 2214 | "node": ">=6" 2215 | }, 2216 | "funding": { 2217 | "url": "https://github.com/sponsors/sindresorhus" 2218 | } 2219 | }, 2220 | "node_modules/imurmurhash": { 2221 | "version": "0.1.4", 2222 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2223 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2224 | "dev": true, 2225 | "engines": { 2226 | "node": ">=0.8.19" 2227 | } 2228 | }, 2229 | "node_modules/inflight": { 2230 | "version": "1.0.6", 2231 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2232 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2233 | "dev": true, 2234 | "dependencies": { 2235 | "once": "^1.3.0", 2236 | "wrappy": "1" 2237 | } 2238 | }, 2239 | "node_modules/inherits": { 2240 | "version": "2.0.4", 2241 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2242 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2243 | "dev": true 2244 | }, 2245 | "node_modules/ini": { 2246 | "version": "1.3.8", 2247 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 2248 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" 2249 | }, 2250 | "node_modules/inline-style-parser": { 2251 | "version": "0.1.1", 2252 | "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", 2253 | "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", 2254 | "dev": true 2255 | }, 2256 | "node_modules/is-alphabetical": { 2257 | "version": "2.0.1", 2258 | "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", 2259 | "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", 2260 | "dev": true, 2261 | "funding": { 2262 | "type": "github", 2263 | "url": "https://github.com/sponsors/wooorm" 2264 | } 2265 | }, 2266 | "node_modules/is-alphanumerical": { 2267 | "version": "2.0.1", 2268 | "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", 2269 | "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", 2270 | "dev": true, 2271 | "dependencies": { 2272 | "is-alphabetical": "^2.0.0", 2273 | "is-decimal": "^2.0.0" 2274 | }, 2275 | "funding": { 2276 | "type": "github", 2277 | "url": "https://github.com/sponsors/wooorm" 2278 | } 2279 | }, 2280 | "node_modules/is-buffer": { 2281 | "version": "2.0.5", 2282 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", 2283 | "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", 2284 | "dev": true, 2285 | "funding": [ 2286 | { 2287 | "type": "github", 2288 | "url": "https://github.com/sponsors/feross" 2289 | }, 2290 | { 2291 | "type": "patreon", 2292 | "url": "https://www.patreon.com/feross" 2293 | }, 2294 | { 2295 | "type": "consulting", 2296 | "url": "https://feross.org/support" 2297 | } 2298 | ], 2299 | "engines": { 2300 | "node": ">=4" 2301 | } 2302 | }, 2303 | "node_modules/is-core-module": { 2304 | "version": "2.11.0", 2305 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", 2306 | "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", 2307 | "dev": true, 2308 | "dependencies": { 2309 | "has": "^1.0.3" 2310 | }, 2311 | "funding": { 2312 | "url": "https://github.com/sponsors/ljharb" 2313 | } 2314 | }, 2315 | "node_modules/is-decimal": { 2316 | "version": "2.0.1", 2317 | "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", 2318 | "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", 2319 | "dev": true, 2320 | "funding": { 2321 | "type": "github", 2322 | "url": "https://github.com/sponsors/wooorm" 2323 | } 2324 | }, 2325 | "node_modules/is-docker": { 2326 | "version": "2.2.1", 2327 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2328 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2329 | "bin": { 2330 | "is-docker": "cli.js" 2331 | }, 2332 | "engines": { 2333 | "node": ">=8" 2334 | }, 2335 | "funding": { 2336 | "url": "https://github.com/sponsors/sindresorhus" 2337 | } 2338 | }, 2339 | "node_modules/is-extglob": { 2340 | "version": "2.1.1", 2341 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2342 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2343 | "dev": true, 2344 | "engines": { 2345 | "node": ">=0.10.0" 2346 | } 2347 | }, 2348 | "node_modules/is-fullwidth-code-point": { 2349 | "version": "3.0.0", 2350 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2351 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2352 | "engines": { 2353 | "node": ">=8" 2354 | } 2355 | }, 2356 | "node_modules/is-glob": { 2357 | "version": "4.0.3", 2358 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2359 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2360 | "dev": true, 2361 | "dependencies": { 2362 | "is-extglob": "^2.1.1" 2363 | }, 2364 | "engines": { 2365 | "node": ">=0.10.0" 2366 | } 2367 | }, 2368 | "node_modules/is-hexadecimal": { 2369 | "version": "2.0.1", 2370 | "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", 2371 | "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", 2372 | "dev": true, 2373 | "funding": { 2374 | "type": "github", 2375 | "url": "https://github.com/sponsors/wooorm" 2376 | } 2377 | }, 2378 | "node_modules/is-number": { 2379 | "version": "7.0.0", 2380 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2381 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2382 | "dev": true, 2383 | "engines": { 2384 | "node": ">=0.12.0" 2385 | } 2386 | }, 2387 | "node_modules/is-path-inside": { 2388 | "version": "3.0.3", 2389 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2390 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2391 | "dev": true, 2392 | "engines": { 2393 | "node": ">=8" 2394 | } 2395 | }, 2396 | "node_modules/is-plain-obj": { 2397 | "version": "4.1.0", 2398 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 2399 | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 2400 | "dev": true, 2401 | "engines": { 2402 | "node": ">=12" 2403 | }, 2404 | "funding": { 2405 | "url": "https://github.com/sponsors/sindresorhus" 2406 | } 2407 | }, 2408 | "node_modules/is-port-reachable": { 2409 | "version": "4.0.0", 2410 | "resolved": "https://registry.npmjs.org/is-port-reachable/-/is-port-reachable-4.0.0.tgz", 2411 | "integrity": "sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==", 2412 | "engines": { 2413 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2414 | }, 2415 | "funding": { 2416 | "url": "https://github.com/sponsors/sindresorhus" 2417 | } 2418 | }, 2419 | "node_modules/is-reference": { 2420 | "version": "3.0.1", 2421 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", 2422 | "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", 2423 | "dev": true, 2424 | "dependencies": { 2425 | "@types/estree": "*" 2426 | } 2427 | }, 2428 | "node_modules/is-stream": { 2429 | "version": "2.0.1", 2430 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2431 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2432 | "engines": { 2433 | "node": ">=8" 2434 | }, 2435 | "funding": { 2436 | "url": "https://github.com/sponsors/sindresorhus" 2437 | } 2438 | }, 2439 | "node_modules/is-wsl": { 2440 | "version": "2.2.0", 2441 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2442 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2443 | "dependencies": { 2444 | "is-docker": "^2.0.0" 2445 | }, 2446 | "engines": { 2447 | "node": ">=8" 2448 | } 2449 | }, 2450 | "node_modules/isexe": { 2451 | "version": "2.0.0", 2452 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2453 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2454 | }, 2455 | "node_modules/js-sdsl": { 2456 | "version": "4.3.0", 2457 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", 2458 | "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", 2459 | "dev": true, 2460 | "funding": { 2461 | "type": "opencollective", 2462 | "url": "https://opencollective.com/js-sdsl" 2463 | } 2464 | }, 2465 | "node_modules/js-yaml": { 2466 | "version": "4.1.0", 2467 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2468 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2469 | "dev": true, 2470 | "dependencies": { 2471 | "argparse": "^2.0.1" 2472 | }, 2473 | "bin": { 2474 | "js-yaml": "bin/js-yaml.js" 2475 | } 2476 | }, 2477 | "node_modules/json-schema-traverse": { 2478 | "version": "0.4.1", 2479 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2480 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2481 | "dev": true 2482 | }, 2483 | "node_modules/json-stable-stringify-without-jsonify": { 2484 | "version": "1.0.1", 2485 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2486 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2487 | "dev": true 2488 | }, 2489 | "node_modules/json5": { 2490 | "version": "2.2.3", 2491 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2492 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2493 | "dev": true, 2494 | "bin": { 2495 | "json5": "lib/cli.js" 2496 | }, 2497 | "engines": { 2498 | "node": ">=6" 2499 | } 2500 | }, 2501 | "node_modules/kleur": { 2502 | "version": "4.1.5", 2503 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 2504 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 2505 | "dev": true, 2506 | "engines": { 2507 | "node": ">=6" 2508 | } 2509 | }, 2510 | "node_modules/levn": { 2511 | "version": "0.4.1", 2512 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2513 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2514 | "dev": true, 2515 | "dependencies": { 2516 | "prelude-ls": "^1.2.1", 2517 | "type-check": "~0.4.0" 2518 | }, 2519 | "engines": { 2520 | "node": ">= 0.8.0" 2521 | } 2522 | }, 2523 | "node_modules/lines-and-columns": { 2524 | "version": "1.2.4", 2525 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2526 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2527 | "dev": true 2528 | }, 2529 | "node_modules/locate-path": { 2530 | "version": "6.0.0", 2531 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2532 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2533 | "dev": true, 2534 | "dependencies": { 2535 | "p-locate": "^5.0.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">=10" 2539 | }, 2540 | "funding": { 2541 | "url": "https://github.com/sponsors/sindresorhus" 2542 | } 2543 | }, 2544 | "node_modules/lodash.merge": { 2545 | "version": "4.6.2", 2546 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2547 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2548 | "dev": true 2549 | }, 2550 | "node_modules/longest-streak": { 2551 | "version": "3.1.0", 2552 | "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 2553 | "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 2554 | "dev": true, 2555 | "funding": { 2556 | "type": "github", 2557 | "url": "https://github.com/sponsors/wooorm" 2558 | } 2559 | }, 2560 | "node_modules/lru-cache": { 2561 | "version": "6.0.0", 2562 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2563 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2564 | "dev": true, 2565 | "dependencies": { 2566 | "yallist": "^4.0.0" 2567 | }, 2568 | "engines": { 2569 | "node": ">=10" 2570 | } 2571 | }, 2572 | "node_modules/markdown-extensions": { 2573 | "version": "1.1.1", 2574 | "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", 2575 | "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", 2576 | "dev": true, 2577 | "engines": { 2578 | "node": ">=0.10.0" 2579 | } 2580 | }, 2581 | "node_modules/mdast-util-definitions": { 2582 | "version": "5.1.2", 2583 | "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", 2584 | "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", 2585 | "dev": true, 2586 | "dependencies": { 2587 | "@types/mdast": "^3.0.0", 2588 | "@types/unist": "^2.0.0", 2589 | "unist-util-visit": "^4.0.0" 2590 | }, 2591 | "funding": { 2592 | "type": "opencollective", 2593 | "url": "https://opencollective.com/unified" 2594 | } 2595 | }, 2596 | "node_modules/mdast-util-from-markdown": { 2597 | "version": "1.3.0", 2598 | "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", 2599 | "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", 2600 | "dev": true, 2601 | "dependencies": { 2602 | "@types/mdast": "^3.0.0", 2603 | "@types/unist": "^2.0.0", 2604 | "decode-named-character-reference": "^1.0.0", 2605 | "mdast-util-to-string": "^3.1.0", 2606 | "micromark": "^3.0.0", 2607 | "micromark-util-decode-numeric-character-reference": "^1.0.0", 2608 | "micromark-util-decode-string": "^1.0.0", 2609 | "micromark-util-normalize-identifier": "^1.0.0", 2610 | "micromark-util-symbol": "^1.0.0", 2611 | "micromark-util-types": "^1.0.0", 2612 | "unist-util-stringify-position": "^3.0.0", 2613 | "uvu": "^0.5.0" 2614 | }, 2615 | "funding": { 2616 | "type": "opencollective", 2617 | "url": "https://opencollective.com/unified" 2618 | } 2619 | }, 2620 | "node_modules/mdast-util-mdx": { 2621 | "version": "2.0.1", 2622 | "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", 2623 | "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", 2624 | "dev": true, 2625 | "dependencies": { 2626 | "mdast-util-from-markdown": "^1.0.0", 2627 | "mdast-util-mdx-expression": "^1.0.0", 2628 | "mdast-util-mdx-jsx": "^2.0.0", 2629 | "mdast-util-mdxjs-esm": "^1.0.0", 2630 | "mdast-util-to-markdown": "^1.0.0" 2631 | }, 2632 | "funding": { 2633 | "type": "opencollective", 2634 | "url": "https://opencollective.com/unified" 2635 | } 2636 | }, 2637 | "node_modules/mdast-util-mdx-expression": { 2638 | "version": "1.3.2", 2639 | "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", 2640 | "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", 2641 | "dev": true, 2642 | "dependencies": { 2643 | "@types/estree-jsx": "^1.0.0", 2644 | "@types/hast": "^2.0.0", 2645 | "@types/mdast": "^3.0.0", 2646 | "mdast-util-from-markdown": "^1.0.0", 2647 | "mdast-util-to-markdown": "^1.0.0" 2648 | }, 2649 | "funding": { 2650 | "type": "opencollective", 2651 | "url": "https://opencollective.com/unified" 2652 | } 2653 | }, 2654 | "node_modules/mdast-util-mdx-jsx": { 2655 | "version": "2.1.2", 2656 | "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz", 2657 | "integrity": "sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==", 2658 | "dev": true, 2659 | "dependencies": { 2660 | "@types/estree-jsx": "^1.0.0", 2661 | "@types/hast": "^2.0.0", 2662 | "@types/mdast": "^3.0.0", 2663 | "@types/unist": "^2.0.0", 2664 | "ccount": "^2.0.0", 2665 | "mdast-util-from-markdown": "^1.1.0", 2666 | "mdast-util-to-markdown": "^1.3.0", 2667 | "parse-entities": "^4.0.0", 2668 | "stringify-entities": "^4.0.0", 2669 | "unist-util-remove-position": "^4.0.0", 2670 | "unist-util-stringify-position": "^3.0.0", 2671 | "vfile-message": "^3.0.0" 2672 | }, 2673 | "funding": { 2674 | "type": "opencollective", 2675 | "url": "https://opencollective.com/unified" 2676 | } 2677 | }, 2678 | "node_modules/mdast-util-mdxjs-esm": { 2679 | "version": "1.3.1", 2680 | "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", 2681 | "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", 2682 | "dev": true, 2683 | "dependencies": { 2684 | "@types/estree-jsx": "^1.0.0", 2685 | "@types/hast": "^2.0.0", 2686 | "@types/mdast": "^3.0.0", 2687 | "mdast-util-from-markdown": "^1.0.0", 2688 | "mdast-util-to-markdown": "^1.0.0" 2689 | }, 2690 | "funding": { 2691 | "type": "opencollective", 2692 | "url": "https://opencollective.com/unified" 2693 | } 2694 | }, 2695 | "node_modules/mdast-util-phrasing": { 2696 | "version": "3.0.1", 2697 | "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", 2698 | "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", 2699 | "dev": true, 2700 | "dependencies": { 2701 | "@types/mdast": "^3.0.0", 2702 | "unist-util-is": "^5.0.0" 2703 | }, 2704 | "funding": { 2705 | "type": "opencollective", 2706 | "url": "https://opencollective.com/unified" 2707 | } 2708 | }, 2709 | "node_modules/mdast-util-to-hast": { 2710 | "version": "12.3.0", 2711 | "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", 2712 | "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", 2713 | "dev": true, 2714 | "dependencies": { 2715 | "@types/hast": "^2.0.0", 2716 | "@types/mdast": "^3.0.0", 2717 | "mdast-util-definitions": "^5.0.0", 2718 | "micromark-util-sanitize-uri": "^1.1.0", 2719 | "trim-lines": "^3.0.0", 2720 | "unist-util-generated": "^2.0.0", 2721 | "unist-util-position": "^4.0.0", 2722 | "unist-util-visit": "^4.0.0" 2723 | }, 2724 | "funding": { 2725 | "type": "opencollective", 2726 | "url": "https://opencollective.com/unified" 2727 | } 2728 | }, 2729 | "node_modules/mdast-util-to-markdown": { 2730 | "version": "1.5.0", 2731 | "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", 2732 | "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", 2733 | "dev": true, 2734 | "dependencies": { 2735 | "@types/mdast": "^3.0.0", 2736 | "@types/unist": "^2.0.0", 2737 | "longest-streak": "^3.0.0", 2738 | "mdast-util-phrasing": "^3.0.0", 2739 | "mdast-util-to-string": "^3.0.0", 2740 | "micromark-util-decode-string": "^1.0.0", 2741 | "unist-util-visit": "^4.0.0", 2742 | "zwitch": "^2.0.0" 2743 | }, 2744 | "funding": { 2745 | "type": "opencollective", 2746 | "url": "https://opencollective.com/unified" 2747 | } 2748 | }, 2749 | "node_modules/mdast-util-to-string": { 2750 | "version": "3.1.1", 2751 | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", 2752 | "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", 2753 | "dev": true, 2754 | "dependencies": { 2755 | "@types/mdast": "^3.0.0" 2756 | }, 2757 | "funding": { 2758 | "type": "opencollective", 2759 | "url": "https://opencollective.com/unified" 2760 | } 2761 | }, 2762 | "node_modules/merge-stream": { 2763 | "version": "2.0.0", 2764 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2765 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2766 | }, 2767 | "node_modules/merge2": { 2768 | "version": "1.4.1", 2769 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2770 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2771 | "dev": true, 2772 | "engines": { 2773 | "node": ">= 8" 2774 | } 2775 | }, 2776 | "node_modules/micromark": { 2777 | "version": "3.1.0", 2778 | "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", 2779 | "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", 2780 | "dev": true, 2781 | "funding": [ 2782 | { 2783 | "type": "GitHub Sponsors", 2784 | "url": "https://github.com/sponsors/unifiedjs" 2785 | }, 2786 | { 2787 | "type": "OpenCollective", 2788 | "url": "https://opencollective.com/unified" 2789 | } 2790 | ], 2791 | "dependencies": { 2792 | "@types/debug": "^4.0.0", 2793 | "debug": "^4.0.0", 2794 | "decode-named-character-reference": "^1.0.0", 2795 | "micromark-core-commonmark": "^1.0.1", 2796 | "micromark-factory-space": "^1.0.0", 2797 | "micromark-util-character": "^1.0.0", 2798 | "micromark-util-chunked": "^1.0.0", 2799 | "micromark-util-combine-extensions": "^1.0.0", 2800 | "micromark-util-decode-numeric-character-reference": "^1.0.0", 2801 | "micromark-util-encode": "^1.0.0", 2802 | "micromark-util-normalize-identifier": "^1.0.0", 2803 | "micromark-util-resolve-all": "^1.0.0", 2804 | "micromark-util-sanitize-uri": "^1.0.0", 2805 | "micromark-util-subtokenize": "^1.0.0", 2806 | "micromark-util-symbol": "^1.0.0", 2807 | "micromark-util-types": "^1.0.1", 2808 | "uvu": "^0.5.0" 2809 | } 2810 | }, 2811 | "node_modules/micromark-core-commonmark": { 2812 | "version": "1.0.6", 2813 | "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", 2814 | "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", 2815 | "dev": true, 2816 | "funding": [ 2817 | { 2818 | "type": "GitHub Sponsors", 2819 | "url": "https://github.com/sponsors/unifiedjs" 2820 | }, 2821 | { 2822 | "type": "OpenCollective", 2823 | "url": "https://opencollective.com/unified" 2824 | } 2825 | ], 2826 | "dependencies": { 2827 | "decode-named-character-reference": "^1.0.0", 2828 | "micromark-factory-destination": "^1.0.0", 2829 | "micromark-factory-label": "^1.0.0", 2830 | "micromark-factory-space": "^1.0.0", 2831 | "micromark-factory-title": "^1.0.0", 2832 | "micromark-factory-whitespace": "^1.0.0", 2833 | "micromark-util-character": "^1.0.0", 2834 | "micromark-util-chunked": "^1.0.0", 2835 | "micromark-util-classify-character": "^1.0.0", 2836 | "micromark-util-html-tag-name": "^1.0.0", 2837 | "micromark-util-normalize-identifier": "^1.0.0", 2838 | "micromark-util-resolve-all": "^1.0.0", 2839 | "micromark-util-subtokenize": "^1.0.0", 2840 | "micromark-util-symbol": "^1.0.0", 2841 | "micromark-util-types": "^1.0.1", 2842 | "uvu": "^0.5.0" 2843 | } 2844 | }, 2845 | "node_modules/micromark-extension-mdx-expression": { 2846 | "version": "1.0.4", 2847 | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz", 2848 | "integrity": "sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==", 2849 | "dev": true, 2850 | "funding": [ 2851 | { 2852 | "type": "GitHub Sponsors", 2853 | "url": "https://github.com/sponsors/unifiedjs" 2854 | }, 2855 | { 2856 | "type": "OpenCollective", 2857 | "url": "https://opencollective.com/unified" 2858 | } 2859 | ], 2860 | "dependencies": { 2861 | "micromark-factory-mdx-expression": "^1.0.0", 2862 | "micromark-factory-space": "^1.0.0", 2863 | "micromark-util-character": "^1.0.0", 2864 | "micromark-util-events-to-acorn": "^1.0.0", 2865 | "micromark-util-symbol": "^1.0.0", 2866 | "micromark-util-types": "^1.0.0", 2867 | "uvu": "^0.5.0" 2868 | } 2869 | }, 2870 | "node_modules/micromark-extension-mdx-jsx": { 2871 | "version": "1.0.3", 2872 | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz", 2873 | "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==", 2874 | "dev": true, 2875 | "dependencies": { 2876 | "@types/acorn": "^4.0.0", 2877 | "estree-util-is-identifier-name": "^2.0.0", 2878 | "micromark-factory-mdx-expression": "^1.0.0", 2879 | "micromark-factory-space": "^1.0.0", 2880 | "micromark-util-character": "^1.0.0", 2881 | "micromark-util-symbol": "^1.0.0", 2882 | "micromark-util-types": "^1.0.0", 2883 | "uvu": "^0.5.0", 2884 | "vfile-message": "^3.0.0" 2885 | }, 2886 | "funding": { 2887 | "type": "opencollective", 2888 | "url": "https://opencollective.com/unified" 2889 | } 2890 | }, 2891 | "node_modules/micromark-extension-mdx-md": { 2892 | "version": "1.0.0", 2893 | "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", 2894 | "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", 2895 | "dev": true, 2896 | "dependencies": { 2897 | "micromark-util-types": "^1.0.0" 2898 | }, 2899 | "funding": { 2900 | "type": "opencollective", 2901 | "url": "https://opencollective.com/unified" 2902 | } 2903 | }, 2904 | "node_modules/micromark-extension-mdxjs": { 2905 | "version": "1.0.0", 2906 | "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", 2907 | "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", 2908 | "dev": true, 2909 | "dependencies": { 2910 | "acorn": "^8.0.0", 2911 | "acorn-jsx": "^5.0.0", 2912 | "micromark-extension-mdx-expression": "^1.0.0", 2913 | "micromark-extension-mdx-jsx": "^1.0.0", 2914 | "micromark-extension-mdx-md": "^1.0.0", 2915 | "micromark-extension-mdxjs-esm": "^1.0.0", 2916 | "micromark-util-combine-extensions": "^1.0.0", 2917 | "micromark-util-types": "^1.0.0" 2918 | }, 2919 | "funding": { 2920 | "type": "opencollective", 2921 | "url": "https://opencollective.com/unified" 2922 | } 2923 | }, 2924 | "node_modules/micromark-extension-mdxjs-esm": { 2925 | "version": "1.0.3", 2926 | "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz", 2927 | "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==", 2928 | "dev": true, 2929 | "dependencies": { 2930 | "micromark-core-commonmark": "^1.0.0", 2931 | "micromark-util-character": "^1.0.0", 2932 | "micromark-util-events-to-acorn": "^1.0.0", 2933 | "micromark-util-symbol": "^1.0.0", 2934 | "micromark-util-types": "^1.0.0", 2935 | "unist-util-position-from-estree": "^1.1.0", 2936 | "uvu": "^0.5.0", 2937 | "vfile-message": "^3.0.0" 2938 | }, 2939 | "funding": { 2940 | "type": "opencollective", 2941 | "url": "https://opencollective.com/unified" 2942 | } 2943 | }, 2944 | "node_modules/micromark-factory-destination": { 2945 | "version": "1.0.0", 2946 | "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", 2947 | "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", 2948 | "dev": true, 2949 | "funding": [ 2950 | { 2951 | "type": "GitHub Sponsors", 2952 | "url": "https://github.com/sponsors/unifiedjs" 2953 | }, 2954 | { 2955 | "type": "OpenCollective", 2956 | "url": "https://opencollective.com/unified" 2957 | } 2958 | ], 2959 | "dependencies": { 2960 | "micromark-util-character": "^1.0.0", 2961 | "micromark-util-symbol": "^1.0.0", 2962 | "micromark-util-types": "^1.0.0" 2963 | } 2964 | }, 2965 | "node_modules/micromark-factory-label": { 2966 | "version": "1.0.2", 2967 | "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", 2968 | "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", 2969 | "dev": true, 2970 | "funding": [ 2971 | { 2972 | "type": "GitHub Sponsors", 2973 | "url": "https://github.com/sponsors/unifiedjs" 2974 | }, 2975 | { 2976 | "type": "OpenCollective", 2977 | "url": "https://opencollective.com/unified" 2978 | } 2979 | ], 2980 | "dependencies": { 2981 | "micromark-util-character": "^1.0.0", 2982 | "micromark-util-symbol": "^1.0.0", 2983 | "micromark-util-types": "^1.0.0", 2984 | "uvu": "^0.5.0" 2985 | } 2986 | }, 2987 | "node_modules/micromark-factory-mdx-expression": { 2988 | "version": "1.0.7", 2989 | "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz", 2990 | "integrity": "sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==", 2991 | "dev": true, 2992 | "funding": [ 2993 | { 2994 | "type": "GitHub Sponsors", 2995 | "url": "https://github.com/sponsors/unifiedjs" 2996 | }, 2997 | { 2998 | "type": "OpenCollective", 2999 | "url": "https://opencollective.com/unified" 3000 | } 3001 | ], 3002 | "dependencies": { 3003 | "micromark-factory-space": "^1.0.0", 3004 | "micromark-util-character": "^1.0.0", 3005 | "micromark-util-events-to-acorn": "^1.0.0", 3006 | "micromark-util-symbol": "^1.0.0", 3007 | "micromark-util-types": "^1.0.0", 3008 | "unist-util-position-from-estree": "^1.0.0", 3009 | "uvu": "^0.5.0", 3010 | "vfile-message": "^3.0.0" 3011 | } 3012 | }, 3013 | "node_modules/micromark-factory-space": { 3014 | "version": "1.0.0", 3015 | "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", 3016 | "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", 3017 | "dev": true, 3018 | "funding": [ 3019 | { 3020 | "type": "GitHub Sponsors", 3021 | "url": "https://github.com/sponsors/unifiedjs" 3022 | }, 3023 | { 3024 | "type": "OpenCollective", 3025 | "url": "https://opencollective.com/unified" 3026 | } 3027 | ], 3028 | "dependencies": { 3029 | "micromark-util-character": "^1.0.0", 3030 | "micromark-util-types": "^1.0.0" 3031 | } 3032 | }, 3033 | "node_modules/micromark-factory-title": { 3034 | "version": "1.0.2", 3035 | "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", 3036 | "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", 3037 | "dev": true, 3038 | "funding": [ 3039 | { 3040 | "type": "GitHub Sponsors", 3041 | "url": "https://github.com/sponsors/unifiedjs" 3042 | }, 3043 | { 3044 | "type": "OpenCollective", 3045 | "url": "https://opencollective.com/unified" 3046 | } 3047 | ], 3048 | "dependencies": { 3049 | "micromark-factory-space": "^1.0.0", 3050 | "micromark-util-character": "^1.0.0", 3051 | "micromark-util-symbol": "^1.0.0", 3052 | "micromark-util-types": "^1.0.0", 3053 | "uvu": "^0.5.0" 3054 | } 3055 | }, 3056 | "node_modules/micromark-factory-whitespace": { 3057 | "version": "1.0.0", 3058 | "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", 3059 | "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", 3060 | "dev": true, 3061 | "funding": [ 3062 | { 3063 | "type": "GitHub Sponsors", 3064 | "url": "https://github.com/sponsors/unifiedjs" 3065 | }, 3066 | { 3067 | "type": "OpenCollective", 3068 | "url": "https://opencollective.com/unified" 3069 | } 3070 | ], 3071 | "dependencies": { 3072 | "micromark-factory-space": "^1.0.0", 3073 | "micromark-util-character": "^1.0.0", 3074 | "micromark-util-symbol": "^1.0.0", 3075 | "micromark-util-types": "^1.0.0" 3076 | } 3077 | }, 3078 | "node_modules/micromark-util-character": { 3079 | "version": "1.1.0", 3080 | "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", 3081 | "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", 3082 | "dev": true, 3083 | "funding": [ 3084 | { 3085 | "type": "GitHub Sponsors", 3086 | "url": "https://github.com/sponsors/unifiedjs" 3087 | }, 3088 | { 3089 | "type": "OpenCollective", 3090 | "url": "https://opencollective.com/unified" 3091 | } 3092 | ], 3093 | "dependencies": { 3094 | "micromark-util-symbol": "^1.0.0", 3095 | "micromark-util-types": "^1.0.0" 3096 | } 3097 | }, 3098 | "node_modules/micromark-util-chunked": { 3099 | "version": "1.0.0", 3100 | "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", 3101 | "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", 3102 | "dev": true, 3103 | "funding": [ 3104 | { 3105 | "type": "GitHub Sponsors", 3106 | "url": "https://github.com/sponsors/unifiedjs" 3107 | }, 3108 | { 3109 | "type": "OpenCollective", 3110 | "url": "https://opencollective.com/unified" 3111 | } 3112 | ], 3113 | "dependencies": { 3114 | "micromark-util-symbol": "^1.0.0" 3115 | } 3116 | }, 3117 | "node_modules/micromark-util-classify-character": { 3118 | "version": "1.0.0", 3119 | "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", 3120 | "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", 3121 | "dev": true, 3122 | "funding": [ 3123 | { 3124 | "type": "GitHub Sponsors", 3125 | "url": "https://github.com/sponsors/unifiedjs" 3126 | }, 3127 | { 3128 | "type": "OpenCollective", 3129 | "url": "https://opencollective.com/unified" 3130 | } 3131 | ], 3132 | "dependencies": { 3133 | "micromark-util-character": "^1.0.0", 3134 | "micromark-util-symbol": "^1.0.0", 3135 | "micromark-util-types": "^1.0.0" 3136 | } 3137 | }, 3138 | "node_modules/micromark-util-combine-extensions": { 3139 | "version": "1.0.0", 3140 | "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", 3141 | "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", 3142 | "dev": true, 3143 | "funding": [ 3144 | { 3145 | "type": "GitHub Sponsors", 3146 | "url": "https://github.com/sponsors/unifiedjs" 3147 | }, 3148 | { 3149 | "type": "OpenCollective", 3150 | "url": "https://opencollective.com/unified" 3151 | } 3152 | ], 3153 | "dependencies": { 3154 | "micromark-util-chunked": "^1.0.0", 3155 | "micromark-util-types": "^1.0.0" 3156 | } 3157 | }, 3158 | "node_modules/micromark-util-decode-numeric-character-reference": { 3159 | "version": "1.0.0", 3160 | "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", 3161 | "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", 3162 | "dev": true, 3163 | "funding": [ 3164 | { 3165 | "type": "GitHub Sponsors", 3166 | "url": "https://github.com/sponsors/unifiedjs" 3167 | }, 3168 | { 3169 | "type": "OpenCollective", 3170 | "url": "https://opencollective.com/unified" 3171 | } 3172 | ], 3173 | "dependencies": { 3174 | "micromark-util-symbol": "^1.0.0" 3175 | } 3176 | }, 3177 | "node_modules/micromark-util-decode-string": { 3178 | "version": "1.0.2", 3179 | "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", 3180 | "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", 3181 | "dev": true, 3182 | "funding": [ 3183 | { 3184 | "type": "GitHub Sponsors", 3185 | "url": "https://github.com/sponsors/unifiedjs" 3186 | }, 3187 | { 3188 | "type": "OpenCollective", 3189 | "url": "https://opencollective.com/unified" 3190 | } 3191 | ], 3192 | "dependencies": { 3193 | "decode-named-character-reference": "^1.0.0", 3194 | "micromark-util-character": "^1.0.0", 3195 | "micromark-util-decode-numeric-character-reference": "^1.0.0", 3196 | "micromark-util-symbol": "^1.0.0" 3197 | } 3198 | }, 3199 | "node_modules/micromark-util-encode": { 3200 | "version": "1.0.1", 3201 | "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", 3202 | "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", 3203 | "dev": true, 3204 | "funding": [ 3205 | { 3206 | "type": "GitHub Sponsors", 3207 | "url": "https://github.com/sponsors/unifiedjs" 3208 | }, 3209 | { 3210 | "type": "OpenCollective", 3211 | "url": "https://opencollective.com/unified" 3212 | } 3213 | ] 3214 | }, 3215 | "node_modules/micromark-util-events-to-acorn": { 3216 | "version": "1.2.1", 3217 | "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz", 3218 | "integrity": "sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==", 3219 | "dev": true, 3220 | "funding": [ 3221 | { 3222 | "type": "GitHub Sponsors", 3223 | "url": "https://github.com/sponsors/unifiedjs" 3224 | }, 3225 | { 3226 | "type": "OpenCollective", 3227 | "url": "https://opencollective.com/unified" 3228 | } 3229 | ], 3230 | "dependencies": { 3231 | "@types/acorn": "^4.0.0", 3232 | "@types/estree": "^1.0.0", 3233 | "estree-util-visit": "^1.0.0", 3234 | "micromark-util-types": "^1.0.0", 3235 | "uvu": "^0.5.0", 3236 | "vfile-location": "^4.0.0", 3237 | "vfile-message": "^3.0.0" 3238 | } 3239 | }, 3240 | "node_modules/micromark-util-html-tag-name": { 3241 | "version": "1.1.0", 3242 | "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", 3243 | "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", 3244 | "dev": true, 3245 | "funding": [ 3246 | { 3247 | "type": "GitHub Sponsors", 3248 | "url": "https://github.com/sponsors/unifiedjs" 3249 | }, 3250 | { 3251 | "type": "OpenCollective", 3252 | "url": "https://opencollective.com/unified" 3253 | } 3254 | ] 3255 | }, 3256 | "node_modules/micromark-util-normalize-identifier": { 3257 | "version": "1.0.0", 3258 | "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", 3259 | "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", 3260 | "dev": true, 3261 | "funding": [ 3262 | { 3263 | "type": "GitHub Sponsors", 3264 | "url": "https://github.com/sponsors/unifiedjs" 3265 | }, 3266 | { 3267 | "type": "OpenCollective", 3268 | "url": "https://opencollective.com/unified" 3269 | } 3270 | ], 3271 | "dependencies": { 3272 | "micromark-util-symbol": "^1.0.0" 3273 | } 3274 | }, 3275 | "node_modules/micromark-util-resolve-all": { 3276 | "version": "1.0.0", 3277 | "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", 3278 | "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", 3279 | "dev": true, 3280 | "funding": [ 3281 | { 3282 | "type": "GitHub Sponsors", 3283 | "url": "https://github.com/sponsors/unifiedjs" 3284 | }, 3285 | { 3286 | "type": "OpenCollective", 3287 | "url": "https://opencollective.com/unified" 3288 | } 3289 | ], 3290 | "dependencies": { 3291 | "micromark-util-types": "^1.0.0" 3292 | } 3293 | }, 3294 | "node_modules/micromark-util-sanitize-uri": { 3295 | "version": "1.1.0", 3296 | "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", 3297 | "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", 3298 | "dev": true, 3299 | "funding": [ 3300 | { 3301 | "type": "GitHub Sponsors", 3302 | "url": "https://github.com/sponsors/unifiedjs" 3303 | }, 3304 | { 3305 | "type": "OpenCollective", 3306 | "url": "https://opencollective.com/unified" 3307 | } 3308 | ], 3309 | "dependencies": { 3310 | "micromark-util-character": "^1.0.0", 3311 | "micromark-util-encode": "^1.0.0", 3312 | "micromark-util-symbol": "^1.0.0" 3313 | } 3314 | }, 3315 | "node_modules/micromark-util-subtokenize": { 3316 | "version": "1.0.2", 3317 | "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", 3318 | "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", 3319 | "dev": true, 3320 | "funding": [ 3321 | { 3322 | "type": "GitHub Sponsors", 3323 | "url": "https://github.com/sponsors/unifiedjs" 3324 | }, 3325 | { 3326 | "type": "OpenCollective", 3327 | "url": "https://opencollective.com/unified" 3328 | } 3329 | ], 3330 | "dependencies": { 3331 | "micromark-util-chunked": "^1.0.0", 3332 | "micromark-util-symbol": "^1.0.0", 3333 | "micromark-util-types": "^1.0.0", 3334 | "uvu": "^0.5.0" 3335 | } 3336 | }, 3337 | "node_modules/micromark-util-symbol": { 3338 | "version": "1.0.1", 3339 | "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", 3340 | "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", 3341 | "dev": true, 3342 | "funding": [ 3343 | { 3344 | "type": "GitHub Sponsors", 3345 | "url": "https://github.com/sponsors/unifiedjs" 3346 | }, 3347 | { 3348 | "type": "OpenCollective", 3349 | "url": "https://opencollective.com/unified" 3350 | } 3351 | ] 3352 | }, 3353 | "node_modules/micromark-util-types": { 3354 | "version": "1.0.2", 3355 | "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", 3356 | "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", 3357 | "dev": true, 3358 | "funding": [ 3359 | { 3360 | "type": "GitHub Sponsors", 3361 | "url": "https://github.com/sponsors/unifiedjs" 3362 | }, 3363 | { 3364 | "type": "OpenCollective", 3365 | "url": "https://opencollective.com/unified" 3366 | } 3367 | ] 3368 | }, 3369 | "node_modules/micromatch": { 3370 | "version": "4.0.5", 3371 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 3372 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 3373 | "dev": true, 3374 | "dependencies": { 3375 | "braces": "^3.0.2", 3376 | "picomatch": "^2.3.1" 3377 | }, 3378 | "engines": { 3379 | "node": ">=8.6" 3380 | } 3381 | }, 3382 | "node_modules/mime-db": { 3383 | "version": "1.52.0", 3384 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 3385 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 3386 | "engines": { 3387 | "node": ">= 0.6" 3388 | } 3389 | }, 3390 | "node_modules/mime-types": { 3391 | "version": "2.1.35", 3392 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 3393 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 3394 | "dependencies": { 3395 | "mime-db": "1.52.0" 3396 | }, 3397 | "engines": { 3398 | "node": ">= 0.6" 3399 | } 3400 | }, 3401 | "node_modules/mimic-fn": { 3402 | "version": "2.1.0", 3403 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3404 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3405 | "engines": { 3406 | "node": ">=6" 3407 | } 3408 | }, 3409 | "node_modules/minimatch": { 3410 | "version": "3.1.2", 3411 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3412 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3413 | "dependencies": { 3414 | "brace-expansion": "^1.1.7" 3415 | }, 3416 | "engines": { 3417 | "node": "*" 3418 | } 3419 | }, 3420 | "node_modules/minimist": { 3421 | "version": "1.2.8", 3422 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 3423 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 3424 | "funding": { 3425 | "url": "https://github.com/sponsors/ljharb" 3426 | } 3427 | }, 3428 | "node_modules/mri": { 3429 | "version": "1.2.0", 3430 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 3431 | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 3432 | "dev": true, 3433 | "engines": { 3434 | "node": ">=4" 3435 | } 3436 | }, 3437 | "node_modules/ms": { 3438 | "version": "2.1.2", 3439 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3440 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3441 | "dev": true 3442 | }, 3443 | "node_modules/mz": { 3444 | "version": "2.7.0", 3445 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 3446 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 3447 | "dev": true, 3448 | "dependencies": { 3449 | "any-promise": "^1.0.0", 3450 | "object-assign": "^4.0.1", 3451 | "thenify-all": "^1.0.0" 3452 | } 3453 | }, 3454 | "node_modules/nanoid": { 3455 | "version": "3.3.4", 3456 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", 3457 | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", 3458 | "dev": true, 3459 | "bin": { 3460 | "nanoid": "bin/nanoid.cjs" 3461 | }, 3462 | "engines": { 3463 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3464 | } 3465 | }, 3466 | "node_modules/natural-compare": { 3467 | "version": "1.4.0", 3468 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3469 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3470 | "dev": true 3471 | }, 3472 | "node_modules/natural-compare-lite": { 3473 | "version": "1.4.0", 3474 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", 3475 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", 3476 | "dev": true 3477 | }, 3478 | "node_modules/negotiator": { 3479 | "version": "0.6.3", 3480 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 3481 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 3482 | "engines": { 3483 | "node": ">= 0.6" 3484 | } 3485 | }, 3486 | "node_modules/node-domexception": { 3487 | "version": "1.0.0", 3488 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", 3489 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", 3490 | "dev": true, 3491 | "funding": [ 3492 | { 3493 | "type": "github", 3494 | "url": "https://github.com/sponsors/jimmywarting" 3495 | }, 3496 | { 3497 | "type": "github", 3498 | "url": "https://paypal.me/jimmywarting" 3499 | } 3500 | ], 3501 | "engines": { 3502 | "node": ">=10.5.0" 3503 | } 3504 | }, 3505 | "node_modules/node-fetch": { 3506 | "version": "3.3.0", 3507 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.0.tgz", 3508 | "integrity": "sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==", 3509 | "dev": true, 3510 | "dependencies": { 3511 | "data-uri-to-buffer": "^4.0.0", 3512 | "fetch-blob": "^3.1.4", 3513 | "formdata-polyfill": "^4.0.10" 3514 | }, 3515 | "engines": { 3516 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3517 | }, 3518 | "funding": { 3519 | "type": "opencollective", 3520 | "url": "https://opencollective.com/node-fetch" 3521 | } 3522 | }, 3523 | "node_modules/npm-run-path": { 3524 | "version": "4.0.1", 3525 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3526 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3527 | "dependencies": { 3528 | "path-key": "^3.0.0" 3529 | }, 3530 | "engines": { 3531 | "node": ">=8" 3532 | } 3533 | }, 3534 | "node_modules/object-assign": { 3535 | "version": "4.1.1", 3536 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3537 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3538 | "dev": true, 3539 | "engines": { 3540 | "node": ">=0.10.0" 3541 | } 3542 | }, 3543 | "node_modules/on-headers": { 3544 | "version": "1.0.2", 3545 | "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", 3546 | "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", 3547 | "engines": { 3548 | "node": ">= 0.8" 3549 | } 3550 | }, 3551 | "node_modules/once": { 3552 | "version": "1.4.0", 3553 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3554 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3555 | "dev": true, 3556 | "dependencies": { 3557 | "wrappy": "1" 3558 | } 3559 | }, 3560 | "node_modules/onetime": { 3561 | "version": "5.1.2", 3562 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3563 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3564 | "dependencies": { 3565 | "mimic-fn": "^2.1.0" 3566 | }, 3567 | "engines": { 3568 | "node": ">=6" 3569 | }, 3570 | "funding": { 3571 | "url": "https://github.com/sponsors/sindresorhus" 3572 | } 3573 | }, 3574 | "node_modules/optionator": { 3575 | "version": "0.9.1", 3576 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3577 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3578 | "dev": true, 3579 | "dependencies": { 3580 | "deep-is": "^0.1.3", 3581 | "fast-levenshtein": "^2.0.6", 3582 | "levn": "^0.4.1", 3583 | "prelude-ls": "^1.2.1", 3584 | "type-check": "^0.4.0", 3585 | "word-wrap": "^1.2.3" 3586 | }, 3587 | "engines": { 3588 | "node": ">= 0.8.0" 3589 | } 3590 | }, 3591 | "node_modules/p-limit": { 3592 | "version": "3.1.0", 3593 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3594 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3595 | "dev": true, 3596 | "dependencies": { 3597 | "yocto-queue": "^0.1.0" 3598 | }, 3599 | "engines": { 3600 | "node": ">=10" 3601 | }, 3602 | "funding": { 3603 | "url": "https://github.com/sponsors/sindresorhus" 3604 | } 3605 | }, 3606 | "node_modules/p-locate": { 3607 | "version": "5.0.0", 3608 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3609 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3610 | "dev": true, 3611 | "dependencies": { 3612 | "p-limit": "^3.0.2" 3613 | }, 3614 | "engines": { 3615 | "node": ">=10" 3616 | }, 3617 | "funding": { 3618 | "url": "https://github.com/sponsors/sindresorhus" 3619 | } 3620 | }, 3621 | "node_modules/parent-module": { 3622 | "version": "1.0.1", 3623 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3624 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3625 | "dev": true, 3626 | "dependencies": { 3627 | "callsites": "^3.0.0" 3628 | }, 3629 | "engines": { 3630 | "node": ">=6" 3631 | } 3632 | }, 3633 | "node_modules/parse-entities": { 3634 | "version": "4.0.1", 3635 | "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", 3636 | "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", 3637 | "dev": true, 3638 | "dependencies": { 3639 | "@types/unist": "^2.0.0", 3640 | "character-entities": "^2.0.0", 3641 | "character-entities-legacy": "^3.0.0", 3642 | "character-reference-invalid": "^2.0.0", 3643 | "decode-named-character-reference": "^1.0.0", 3644 | "is-alphanumerical": "^2.0.0", 3645 | "is-decimal": "^2.0.0", 3646 | "is-hexadecimal": "^2.0.0" 3647 | }, 3648 | "funding": { 3649 | "type": "github", 3650 | "url": "https://github.com/sponsors/wooorm" 3651 | } 3652 | }, 3653 | "node_modules/path-exists": { 3654 | "version": "4.0.0", 3655 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3656 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3657 | "dev": true, 3658 | "engines": { 3659 | "node": ">=8" 3660 | } 3661 | }, 3662 | "node_modules/path-is-absolute": { 3663 | "version": "1.0.1", 3664 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3665 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3666 | "dev": true, 3667 | "engines": { 3668 | "node": ">=0.10.0" 3669 | } 3670 | }, 3671 | "node_modules/path-is-inside": { 3672 | "version": "1.0.2", 3673 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", 3674 | "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" 3675 | }, 3676 | "node_modules/path-key": { 3677 | "version": "3.1.1", 3678 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3679 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3680 | "engines": { 3681 | "node": ">=8" 3682 | } 3683 | }, 3684 | "node_modules/path-parse": { 3685 | "version": "1.0.7", 3686 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3687 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3688 | "dev": true 3689 | }, 3690 | "node_modules/path-to-regexp": { 3691 | "version": "2.2.1", 3692 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", 3693 | "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" 3694 | }, 3695 | "node_modules/path-type": { 3696 | "version": "4.0.0", 3697 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3698 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3699 | "dev": true, 3700 | "engines": { 3701 | "node": ">=8" 3702 | } 3703 | }, 3704 | "node_modules/periscopic": { 3705 | "version": "3.1.0", 3706 | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", 3707 | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", 3708 | "dev": true, 3709 | "dependencies": { 3710 | "@types/estree": "^1.0.0", 3711 | "estree-walker": "^3.0.0", 3712 | "is-reference": "^3.0.0" 3713 | } 3714 | }, 3715 | "node_modules/picocolors": { 3716 | "version": "1.0.0", 3717 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3718 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 3719 | "dev": true 3720 | }, 3721 | "node_modules/picomatch": { 3722 | "version": "2.3.1", 3723 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3724 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3725 | "dev": true, 3726 | "engines": { 3727 | "node": ">=8.6" 3728 | }, 3729 | "funding": { 3730 | "url": "https://github.com/sponsors/jonschlinkert" 3731 | } 3732 | }, 3733 | "node_modules/pirates": { 3734 | "version": "4.0.5", 3735 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3736 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3737 | "dev": true, 3738 | "engines": { 3739 | "node": ">= 6" 3740 | } 3741 | }, 3742 | "node_modules/postcss": { 3743 | "version": "8.4.21", 3744 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", 3745 | "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", 3746 | "dev": true, 3747 | "funding": [ 3748 | { 3749 | "type": "opencollective", 3750 | "url": "https://opencollective.com/postcss/" 3751 | }, 3752 | { 3753 | "type": "tidelift", 3754 | "url": "https://tidelift.com/funding/github/npm/postcss" 3755 | } 3756 | ], 3757 | "dependencies": { 3758 | "nanoid": "^3.3.4", 3759 | "picocolors": "^1.0.0", 3760 | "source-map-js": "^1.0.2" 3761 | }, 3762 | "engines": { 3763 | "node": "^10 || ^12 || >=14" 3764 | } 3765 | }, 3766 | "node_modules/prelude-ls": { 3767 | "version": "1.2.1", 3768 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3769 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3770 | "dev": true, 3771 | "engines": { 3772 | "node": ">= 0.8.0" 3773 | } 3774 | }, 3775 | "node_modules/prettier": { 3776 | "version": "2.8.4", 3777 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", 3778 | "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", 3779 | "dev": true, 3780 | "bin": { 3781 | "prettier": "bin-prettier.js" 3782 | }, 3783 | "engines": { 3784 | "node": ">=10.13.0" 3785 | }, 3786 | "funding": { 3787 | "url": "https://github.com/prettier/prettier?sponsor=1" 3788 | } 3789 | }, 3790 | "node_modules/property-information": { 3791 | "version": "6.2.0", 3792 | "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", 3793 | "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", 3794 | "dev": true, 3795 | "funding": { 3796 | "type": "github", 3797 | "url": "https://github.com/sponsors/wooorm" 3798 | } 3799 | }, 3800 | "node_modules/punycode": { 3801 | "version": "2.3.0", 3802 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3803 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3804 | "engines": { 3805 | "node": ">=6" 3806 | } 3807 | }, 3808 | "node_modules/queue-microtask": { 3809 | "version": "1.2.3", 3810 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3811 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3812 | "dev": true, 3813 | "funding": [ 3814 | { 3815 | "type": "github", 3816 | "url": "https://github.com/sponsors/feross" 3817 | }, 3818 | { 3819 | "type": "patreon", 3820 | "url": "https://www.patreon.com/feross" 3821 | }, 3822 | { 3823 | "type": "consulting", 3824 | "url": "https://feross.org/support" 3825 | } 3826 | ] 3827 | }, 3828 | "node_modules/range-parser": { 3829 | "version": "1.2.0", 3830 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", 3831 | "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", 3832 | "engines": { 3833 | "node": ">= 0.6" 3834 | } 3835 | }, 3836 | "node_modules/rc": { 3837 | "version": "1.2.8", 3838 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 3839 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 3840 | "dependencies": { 3841 | "deep-extend": "^0.6.0", 3842 | "ini": "~1.3.0", 3843 | "minimist": "^1.2.0", 3844 | "strip-json-comments": "~2.0.1" 3845 | }, 3846 | "bin": { 3847 | "rc": "cli.js" 3848 | } 3849 | }, 3850 | "node_modules/rc/node_modules/strip-json-comments": { 3851 | "version": "2.0.1", 3852 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 3853 | "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", 3854 | "engines": { 3855 | "node": ">=0.10.0" 3856 | } 3857 | }, 3858 | "node_modules/recrawl-sync": { 3859 | "version": "2.2.3", 3860 | "resolved": "https://registry.npmjs.org/recrawl-sync/-/recrawl-sync-2.2.3.tgz", 3861 | "integrity": "sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==", 3862 | "dev": true, 3863 | "dependencies": { 3864 | "@cush/relative": "^1.0.0", 3865 | "glob-regex": "^0.3.0", 3866 | "slash": "^3.0.0", 3867 | "sucrase": "^3.20.3", 3868 | "tslib": "^1.9.3" 3869 | } 3870 | }, 3871 | "node_modules/regexpp": { 3872 | "version": "3.2.0", 3873 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 3874 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 3875 | "dev": true, 3876 | "engines": { 3877 | "node": ">=8" 3878 | }, 3879 | "funding": { 3880 | "url": "https://github.com/sponsors/mysticatea" 3881 | } 3882 | }, 3883 | "node_modules/registry-auth-token": { 3884 | "version": "3.3.2", 3885 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", 3886 | "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", 3887 | "dependencies": { 3888 | "rc": "^1.1.6", 3889 | "safe-buffer": "^5.0.1" 3890 | } 3891 | }, 3892 | "node_modules/registry-url": { 3893 | "version": "3.1.0", 3894 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", 3895 | "integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==", 3896 | "dependencies": { 3897 | "rc": "^1.0.1" 3898 | }, 3899 | "engines": { 3900 | "node": ">=0.10.0" 3901 | } 3902 | }, 3903 | "node_modules/remark-mdx": { 3904 | "version": "2.3.0", 3905 | "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", 3906 | "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", 3907 | "dev": true, 3908 | "dependencies": { 3909 | "mdast-util-mdx": "^2.0.0", 3910 | "micromark-extension-mdxjs": "^1.0.0" 3911 | }, 3912 | "funding": { 3913 | "type": "opencollective", 3914 | "url": "https://opencollective.com/unified" 3915 | } 3916 | }, 3917 | "node_modules/remark-parse": { 3918 | "version": "10.0.1", 3919 | "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", 3920 | "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", 3921 | "dev": true, 3922 | "dependencies": { 3923 | "@types/mdast": "^3.0.0", 3924 | "mdast-util-from-markdown": "^1.0.0", 3925 | "unified": "^10.0.0" 3926 | }, 3927 | "funding": { 3928 | "type": "opencollective", 3929 | "url": "https://opencollective.com/unified" 3930 | } 3931 | }, 3932 | "node_modules/remark-rehype": { 3933 | "version": "10.1.0", 3934 | "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", 3935 | "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", 3936 | "dev": true, 3937 | "dependencies": { 3938 | "@types/hast": "^2.0.0", 3939 | "@types/mdast": "^3.0.0", 3940 | "mdast-util-to-hast": "^12.1.0", 3941 | "unified": "^10.0.0" 3942 | }, 3943 | "funding": { 3944 | "type": "opencollective", 3945 | "url": "https://opencollective.com/unified" 3946 | } 3947 | }, 3948 | "node_modules/require-from-string": { 3949 | "version": "2.0.2", 3950 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 3951 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 3952 | "engines": { 3953 | "node": ">=0.10.0" 3954 | } 3955 | }, 3956 | "node_modules/resolve": { 3957 | "version": "1.22.1", 3958 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", 3959 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", 3960 | "dev": true, 3961 | "dependencies": { 3962 | "is-core-module": "^2.9.0", 3963 | "path-parse": "^1.0.7", 3964 | "supports-preserve-symlinks-flag": "^1.0.0" 3965 | }, 3966 | "bin": { 3967 | "resolve": "bin/resolve" 3968 | }, 3969 | "funding": { 3970 | "url": "https://github.com/sponsors/ljharb" 3971 | } 3972 | }, 3973 | "node_modules/resolve-from": { 3974 | "version": "4.0.0", 3975 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3976 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3977 | "dev": true, 3978 | "engines": { 3979 | "node": ">=4" 3980 | } 3981 | }, 3982 | "node_modules/reusify": { 3983 | "version": "1.0.4", 3984 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3985 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3986 | "dev": true, 3987 | "engines": { 3988 | "iojs": ">=1.0.0", 3989 | "node": ">=0.10.0" 3990 | } 3991 | }, 3992 | "node_modules/rimraf": { 3993 | "version": "3.0.2", 3994 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3995 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3996 | "dev": true, 3997 | "dependencies": { 3998 | "glob": "^7.1.3" 3999 | }, 4000 | "bin": { 4001 | "rimraf": "bin.js" 4002 | }, 4003 | "funding": { 4004 | "url": "https://github.com/sponsors/isaacs" 4005 | } 4006 | }, 4007 | "node_modules/rollup": { 4008 | "version": "3.19.1", 4009 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.19.1.tgz", 4010 | "integrity": "sha512-lAbrdN7neYCg/8WaoWn/ckzCtz+jr70GFfYdlf50OF7387HTg+wiuiqJRFYawwSPpqfqDNYqK7smY/ks2iAudg==", 4011 | "dev": true, 4012 | "bin": { 4013 | "rollup": "dist/bin/rollup" 4014 | }, 4015 | "engines": { 4016 | "node": ">=14.18.0", 4017 | "npm": ">=8.0.0" 4018 | }, 4019 | "optionalDependencies": { 4020 | "fsevents": "~2.3.2" 4021 | } 4022 | }, 4023 | "node_modules/run-parallel": { 4024 | "version": "1.2.0", 4025 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 4026 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 4027 | "dev": true, 4028 | "funding": [ 4029 | { 4030 | "type": "github", 4031 | "url": "https://github.com/sponsors/feross" 4032 | }, 4033 | { 4034 | "type": "patreon", 4035 | "url": "https://www.patreon.com/feross" 4036 | }, 4037 | { 4038 | "type": "consulting", 4039 | "url": "https://feross.org/support" 4040 | } 4041 | ], 4042 | "dependencies": { 4043 | "queue-microtask": "^1.2.2" 4044 | } 4045 | }, 4046 | "node_modules/sade": { 4047 | "version": "1.8.1", 4048 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 4049 | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 4050 | "dev": true, 4051 | "dependencies": { 4052 | "mri": "^1.1.0" 4053 | }, 4054 | "engines": { 4055 | "node": ">=6" 4056 | } 4057 | }, 4058 | "node_modules/safe-buffer": { 4059 | "version": "5.1.2", 4060 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 4061 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 4062 | }, 4063 | "node_modules/semver": { 4064 | "version": "7.3.8", 4065 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 4066 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 4067 | "dev": true, 4068 | "dependencies": { 4069 | "lru-cache": "^6.0.0" 4070 | }, 4071 | "bin": { 4072 | "semver": "bin/semver.js" 4073 | }, 4074 | "engines": { 4075 | "node": ">=10" 4076 | } 4077 | }, 4078 | "node_modules/serve": { 4079 | "version": "14.2.0", 4080 | "resolved": "https://registry.npmjs.org/serve/-/serve-14.2.0.tgz", 4081 | "integrity": "sha512-+HOw/XK1bW8tw5iBilBz/mJLWRzM8XM6MPxL4J/dKzdxq1vfdEWSwhaR7/yS8EJp5wzvP92p1qirysJvnEtjXg==", 4082 | "dependencies": { 4083 | "@zeit/schemas": "2.29.0", 4084 | "ajv": "8.11.0", 4085 | "arg": "5.0.2", 4086 | "boxen": "7.0.0", 4087 | "chalk": "5.0.1", 4088 | "chalk-template": "0.4.0", 4089 | "clipboardy": "3.0.0", 4090 | "compression": "1.7.4", 4091 | "is-port-reachable": "4.0.0", 4092 | "serve-handler": "6.1.5", 4093 | "update-check": "1.5.4" 4094 | }, 4095 | "bin": { 4096 | "serve": "build/main.js" 4097 | }, 4098 | "engines": { 4099 | "node": ">= 14" 4100 | } 4101 | }, 4102 | "node_modules/serve-handler": { 4103 | "version": "6.1.5", 4104 | "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.5.tgz", 4105 | "integrity": "sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==", 4106 | "dependencies": { 4107 | "bytes": "3.0.0", 4108 | "content-disposition": "0.5.2", 4109 | "fast-url-parser": "1.1.3", 4110 | "mime-types": "2.1.18", 4111 | "minimatch": "3.1.2", 4112 | "path-is-inside": "1.0.2", 4113 | "path-to-regexp": "2.2.1", 4114 | "range-parser": "1.2.0" 4115 | } 4116 | }, 4117 | "node_modules/serve-handler/node_modules/mime-db": { 4118 | "version": "1.33.0", 4119 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", 4120 | "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", 4121 | "engines": { 4122 | "node": ">= 0.6" 4123 | } 4124 | }, 4125 | "node_modules/serve-handler/node_modules/mime-types": { 4126 | "version": "2.1.18", 4127 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", 4128 | "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", 4129 | "dependencies": { 4130 | "mime-db": "~1.33.0" 4131 | }, 4132 | "engines": { 4133 | "node": ">= 0.6" 4134 | } 4135 | }, 4136 | "node_modules/serve/node_modules/ajv": { 4137 | "version": "8.11.0", 4138 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", 4139 | "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", 4140 | "dependencies": { 4141 | "fast-deep-equal": "^3.1.1", 4142 | "json-schema-traverse": "^1.0.0", 4143 | "require-from-string": "^2.0.2", 4144 | "uri-js": "^4.2.2" 4145 | }, 4146 | "funding": { 4147 | "type": "github", 4148 | "url": "https://github.com/sponsors/epoberezkin" 4149 | } 4150 | }, 4151 | "node_modules/serve/node_modules/chalk": { 4152 | "version": "5.0.1", 4153 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz", 4154 | "integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==", 4155 | "engines": { 4156 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 4157 | }, 4158 | "funding": { 4159 | "url": "https://github.com/chalk/chalk?sponsor=1" 4160 | } 4161 | }, 4162 | "node_modules/serve/node_modules/json-schema-traverse": { 4163 | "version": "1.0.0", 4164 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 4165 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" 4166 | }, 4167 | "node_modules/shebang-command": { 4168 | "version": "2.0.0", 4169 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 4170 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 4171 | "dependencies": { 4172 | "shebang-regex": "^3.0.0" 4173 | }, 4174 | "engines": { 4175 | "node": ">=8" 4176 | } 4177 | }, 4178 | "node_modules/shebang-regex": { 4179 | "version": "3.0.0", 4180 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 4181 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 4182 | "engines": { 4183 | "node": ">=8" 4184 | } 4185 | }, 4186 | "node_modules/signal-exit": { 4187 | "version": "3.0.7", 4188 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 4189 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 4190 | }, 4191 | "node_modules/slash": { 4192 | "version": "3.0.0", 4193 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 4194 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 4195 | "dev": true, 4196 | "engines": { 4197 | "node": ">=8" 4198 | } 4199 | }, 4200 | "node_modules/source-map": { 4201 | "version": "0.7.4", 4202 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", 4203 | "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", 4204 | "dev": true, 4205 | "engines": { 4206 | "node": ">= 8" 4207 | } 4208 | }, 4209 | "node_modules/source-map-js": { 4210 | "version": "1.0.2", 4211 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 4212 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 4213 | "dev": true, 4214 | "engines": { 4215 | "node": ">=0.10.0" 4216 | } 4217 | }, 4218 | "node_modules/space-separated-tokens": { 4219 | "version": "2.0.2", 4220 | "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 4221 | "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 4222 | "dev": true, 4223 | "funding": { 4224 | "type": "github", 4225 | "url": "https://github.com/sponsors/wooorm" 4226 | } 4227 | }, 4228 | "node_modules/streamsearch": { 4229 | "version": "1.1.0", 4230 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 4231 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 4232 | "dev": true, 4233 | "engines": { 4234 | "node": ">=10.0.0" 4235 | } 4236 | }, 4237 | "node_modules/string-width": { 4238 | "version": "5.1.2", 4239 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 4240 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 4241 | "dependencies": { 4242 | "eastasianwidth": "^0.2.0", 4243 | "emoji-regex": "^9.2.2", 4244 | "strip-ansi": "^7.0.1" 4245 | }, 4246 | "engines": { 4247 | "node": ">=12" 4248 | }, 4249 | "funding": { 4250 | "url": "https://github.com/sponsors/sindresorhus" 4251 | } 4252 | }, 4253 | "node_modules/string-width/node_modules/ansi-regex": { 4254 | "version": "6.0.1", 4255 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4256 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4257 | "engines": { 4258 | "node": ">=12" 4259 | }, 4260 | "funding": { 4261 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4262 | } 4263 | }, 4264 | "node_modules/string-width/node_modules/strip-ansi": { 4265 | "version": "7.0.1", 4266 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", 4267 | "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", 4268 | "dependencies": { 4269 | "ansi-regex": "^6.0.1" 4270 | }, 4271 | "engines": { 4272 | "node": ">=12" 4273 | }, 4274 | "funding": { 4275 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4276 | } 4277 | }, 4278 | "node_modules/stringify-entities": { 4279 | "version": "4.0.3", 4280 | "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", 4281 | "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", 4282 | "dev": true, 4283 | "dependencies": { 4284 | "character-entities-html4": "^2.0.0", 4285 | "character-entities-legacy": "^3.0.0" 4286 | }, 4287 | "funding": { 4288 | "type": "github", 4289 | "url": "https://github.com/sponsors/wooorm" 4290 | } 4291 | }, 4292 | "node_modules/strip-ansi": { 4293 | "version": "6.0.1", 4294 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4295 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4296 | "dependencies": { 4297 | "ansi-regex": "^5.0.1" 4298 | }, 4299 | "engines": { 4300 | "node": ">=8" 4301 | } 4302 | }, 4303 | "node_modules/strip-bom": { 4304 | "version": "3.0.0", 4305 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 4306 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 4307 | "dev": true, 4308 | "engines": { 4309 | "node": ">=4" 4310 | } 4311 | }, 4312 | "node_modules/strip-final-newline": { 4313 | "version": "2.0.0", 4314 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 4315 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 4316 | "engines": { 4317 | "node": ">=6" 4318 | } 4319 | }, 4320 | "node_modules/strip-json-comments": { 4321 | "version": "3.1.1", 4322 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 4323 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 4324 | "dev": true, 4325 | "engines": { 4326 | "node": ">=8" 4327 | }, 4328 | "funding": { 4329 | "url": "https://github.com/sponsors/sindresorhus" 4330 | } 4331 | }, 4332 | "node_modules/style-to-object": { 4333 | "version": "0.4.1", 4334 | "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", 4335 | "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", 4336 | "dev": true, 4337 | "dependencies": { 4338 | "inline-style-parser": "0.1.1" 4339 | } 4340 | }, 4341 | "node_modules/sucrase": { 4342 | "version": "3.29.0", 4343 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.29.0.tgz", 4344 | "integrity": "sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==", 4345 | "dev": true, 4346 | "dependencies": { 4347 | "commander": "^4.0.0", 4348 | "glob": "7.1.6", 4349 | "lines-and-columns": "^1.1.6", 4350 | "mz": "^2.7.0", 4351 | "pirates": "^4.0.1", 4352 | "ts-interface-checker": "^0.1.9" 4353 | }, 4354 | "bin": { 4355 | "sucrase": "bin/sucrase", 4356 | "sucrase-node": "bin/sucrase-node" 4357 | }, 4358 | "engines": { 4359 | "node": ">=8" 4360 | } 4361 | }, 4362 | "node_modules/sucrase/node_modules/glob": { 4363 | "version": "7.1.6", 4364 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 4365 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 4366 | "dev": true, 4367 | "dependencies": { 4368 | "fs.realpath": "^1.0.0", 4369 | "inflight": "^1.0.4", 4370 | "inherits": "2", 4371 | "minimatch": "^3.0.4", 4372 | "once": "^1.3.0", 4373 | "path-is-absolute": "^1.0.0" 4374 | }, 4375 | "engines": { 4376 | "node": "*" 4377 | }, 4378 | "funding": { 4379 | "url": "https://github.com/sponsors/isaacs" 4380 | } 4381 | }, 4382 | "node_modules/supports-color": { 4383 | "version": "7.2.0", 4384 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4385 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4386 | "dependencies": { 4387 | "has-flag": "^4.0.0" 4388 | }, 4389 | "engines": { 4390 | "node": ">=8" 4391 | } 4392 | }, 4393 | "node_modules/supports-preserve-symlinks-flag": { 4394 | "version": "1.0.0", 4395 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4396 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4397 | "dev": true, 4398 | "engines": { 4399 | "node": ">= 0.4" 4400 | }, 4401 | "funding": { 4402 | "url": "https://github.com/sponsors/ljharb" 4403 | } 4404 | }, 4405 | "node_modules/text-table": { 4406 | "version": "0.2.0", 4407 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4408 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4409 | "dev": true 4410 | }, 4411 | "node_modules/thenify": { 4412 | "version": "3.3.1", 4413 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4414 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4415 | "dev": true, 4416 | "dependencies": { 4417 | "any-promise": "^1.0.0" 4418 | } 4419 | }, 4420 | "node_modules/thenify-all": { 4421 | "version": "1.6.0", 4422 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4423 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4424 | "dev": true, 4425 | "dependencies": { 4426 | "thenify": ">= 3.1.0 < 4" 4427 | }, 4428 | "engines": { 4429 | "node": ">=0.8" 4430 | } 4431 | }, 4432 | "node_modules/to-regex-range": { 4433 | "version": "5.0.1", 4434 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4435 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4436 | "dev": true, 4437 | "dependencies": { 4438 | "is-number": "^7.0.0" 4439 | }, 4440 | "engines": { 4441 | "node": ">=8.0" 4442 | } 4443 | }, 4444 | "node_modules/trim-lines": { 4445 | "version": "3.0.1", 4446 | "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", 4447 | "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", 4448 | "dev": true, 4449 | "funding": { 4450 | "type": "github", 4451 | "url": "https://github.com/sponsors/wooorm" 4452 | } 4453 | }, 4454 | "node_modules/trough": { 4455 | "version": "2.1.0", 4456 | "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", 4457 | "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", 4458 | "dev": true, 4459 | "funding": { 4460 | "type": "github", 4461 | "url": "https://github.com/sponsors/wooorm" 4462 | } 4463 | }, 4464 | "node_modules/ts-interface-checker": { 4465 | "version": "0.1.13", 4466 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4467 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 4468 | "dev": true 4469 | }, 4470 | "node_modules/tsconfig-paths": { 4471 | "version": "4.1.2", 4472 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.1.2.tgz", 4473 | "integrity": "sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==", 4474 | "dev": true, 4475 | "dependencies": { 4476 | "json5": "^2.2.2", 4477 | "minimist": "^1.2.6", 4478 | "strip-bom": "^3.0.0" 4479 | }, 4480 | "engines": { 4481 | "node": ">=6" 4482 | } 4483 | }, 4484 | "node_modules/tslib": { 4485 | "version": "1.14.1", 4486 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4487 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 4488 | "dev": true 4489 | }, 4490 | "node_modules/tsutils": { 4491 | "version": "3.21.0", 4492 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4493 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4494 | "dev": true, 4495 | "dependencies": { 4496 | "tslib": "^1.8.1" 4497 | }, 4498 | "engines": { 4499 | "node": ">= 6" 4500 | }, 4501 | "peerDependencies": { 4502 | "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" 4503 | } 4504 | }, 4505 | "node_modules/type-check": { 4506 | "version": "0.4.0", 4507 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4508 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4509 | "dev": true, 4510 | "dependencies": { 4511 | "prelude-ls": "^1.2.1" 4512 | }, 4513 | "engines": { 4514 | "node": ">= 0.8.0" 4515 | } 4516 | }, 4517 | "node_modules/type-fest": { 4518 | "version": "0.20.2", 4519 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4520 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4521 | "dev": true, 4522 | "engines": { 4523 | "node": ">=10" 4524 | }, 4525 | "funding": { 4526 | "url": "https://github.com/sponsors/sindresorhus" 4527 | } 4528 | }, 4529 | "node_modules/typescript": { 4530 | "version": "4.9.5", 4531 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", 4532 | "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", 4533 | "dev": true, 4534 | "bin": { 4535 | "tsc": "bin/tsc", 4536 | "tsserver": "bin/tsserver" 4537 | }, 4538 | "engines": { 4539 | "node": ">=4.2.0" 4540 | } 4541 | }, 4542 | "node_modules/undici": { 4543 | "version": "5.20.0", 4544 | "resolved": "https://registry.npmjs.org/undici/-/undici-5.20.0.tgz", 4545 | "integrity": "sha512-J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g==", 4546 | "dev": true, 4547 | "dependencies": { 4548 | "busboy": "^1.6.0" 4549 | }, 4550 | "engines": { 4551 | "node": ">=12.18" 4552 | } 4553 | }, 4554 | "node_modules/unified": { 4555 | "version": "10.1.2", 4556 | "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", 4557 | "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", 4558 | "dev": true, 4559 | "dependencies": { 4560 | "@types/unist": "^2.0.0", 4561 | "bail": "^2.0.0", 4562 | "extend": "^3.0.0", 4563 | "is-buffer": "^2.0.0", 4564 | "is-plain-obj": "^4.0.0", 4565 | "trough": "^2.0.0", 4566 | "vfile": "^5.0.0" 4567 | }, 4568 | "funding": { 4569 | "type": "opencollective", 4570 | "url": "https://opencollective.com/unified" 4571 | } 4572 | }, 4573 | "node_modules/unist-util-generated": { 4574 | "version": "2.0.1", 4575 | "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", 4576 | "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", 4577 | "dev": true, 4578 | "funding": { 4579 | "type": "opencollective", 4580 | "url": "https://opencollective.com/unified" 4581 | } 4582 | }, 4583 | "node_modules/unist-util-is": { 4584 | "version": "5.2.1", 4585 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", 4586 | "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", 4587 | "dev": true, 4588 | "dependencies": { 4589 | "@types/unist": "^2.0.0" 4590 | }, 4591 | "funding": { 4592 | "type": "opencollective", 4593 | "url": "https://opencollective.com/unified" 4594 | } 4595 | }, 4596 | "node_modules/unist-util-position": { 4597 | "version": "4.0.4", 4598 | "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", 4599 | "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", 4600 | "dev": true, 4601 | "dependencies": { 4602 | "@types/unist": "^2.0.0" 4603 | }, 4604 | "funding": { 4605 | "type": "opencollective", 4606 | "url": "https://opencollective.com/unified" 4607 | } 4608 | }, 4609 | "node_modules/unist-util-position-from-estree": { 4610 | "version": "1.1.2", 4611 | "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", 4612 | "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", 4613 | "dev": true, 4614 | "dependencies": { 4615 | "@types/unist": "^2.0.0" 4616 | }, 4617 | "funding": { 4618 | "type": "opencollective", 4619 | "url": "https://opencollective.com/unified" 4620 | } 4621 | }, 4622 | "node_modules/unist-util-remove-position": { 4623 | "version": "4.0.2", 4624 | "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", 4625 | "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", 4626 | "dev": true, 4627 | "dependencies": { 4628 | "@types/unist": "^2.0.0", 4629 | "unist-util-visit": "^4.0.0" 4630 | }, 4631 | "funding": { 4632 | "type": "opencollective", 4633 | "url": "https://opencollective.com/unified" 4634 | } 4635 | }, 4636 | "node_modules/unist-util-stringify-position": { 4637 | "version": "3.0.3", 4638 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", 4639 | "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", 4640 | "dev": true, 4641 | "dependencies": { 4642 | "@types/unist": "^2.0.0" 4643 | }, 4644 | "funding": { 4645 | "type": "opencollective", 4646 | "url": "https://opencollective.com/unified" 4647 | } 4648 | }, 4649 | "node_modules/unist-util-visit": { 4650 | "version": "4.1.2", 4651 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", 4652 | "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", 4653 | "dev": true, 4654 | "dependencies": { 4655 | "@types/unist": "^2.0.0", 4656 | "unist-util-is": "^5.0.0", 4657 | "unist-util-visit-parents": "^5.1.1" 4658 | }, 4659 | "funding": { 4660 | "type": "opencollective", 4661 | "url": "https://opencollective.com/unified" 4662 | } 4663 | }, 4664 | "node_modules/unist-util-visit-parents": { 4665 | "version": "5.1.3", 4666 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", 4667 | "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", 4668 | "dev": true, 4669 | "dependencies": { 4670 | "@types/unist": "^2.0.0", 4671 | "unist-util-is": "^5.0.0" 4672 | }, 4673 | "funding": { 4674 | "type": "opencollective", 4675 | "url": "https://opencollective.com/unified" 4676 | } 4677 | }, 4678 | "node_modules/update-check": { 4679 | "version": "1.5.4", 4680 | "resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.4.tgz", 4681 | "integrity": "sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==", 4682 | "dependencies": { 4683 | "registry-auth-token": "3.3.2", 4684 | "registry-url": "3.1.0" 4685 | } 4686 | }, 4687 | "node_modules/uri-js": { 4688 | "version": "4.4.1", 4689 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4690 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4691 | "dependencies": { 4692 | "punycode": "^2.1.0" 4693 | } 4694 | }, 4695 | "node_modules/uvu": { 4696 | "version": "0.5.6", 4697 | "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", 4698 | "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", 4699 | "dev": true, 4700 | "dependencies": { 4701 | "dequal": "^2.0.0", 4702 | "diff": "^5.0.0", 4703 | "kleur": "^4.0.3", 4704 | "sade": "^1.7.3" 4705 | }, 4706 | "bin": { 4707 | "uvu": "bin.js" 4708 | }, 4709 | "engines": { 4710 | "node": ">=8" 4711 | } 4712 | }, 4713 | "node_modules/vary": { 4714 | "version": "1.1.2", 4715 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 4716 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 4717 | "engines": { 4718 | "node": ">= 0.8" 4719 | } 4720 | }, 4721 | "node_modules/vfile": { 4722 | "version": "5.3.7", 4723 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", 4724 | "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", 4725 | "dev": true, 4726 | "dependencies": { 4727 | "@types/unist": "^2.0.0", 4728 | "is-buffer": "^2.0.0", 4729 | "unist-util-stringify-position": "^3.0.0", 4730 | "vfile-message": "^3.0.0" 4731 | }, 4732 | "funding": { 4733 | "type": "opencollective", 4734 | "url": "https://opencollective.com/unified" 4735 | } 4736 | }, 4737 | "node_modules/vfile-location": { 4738 | "version": "4.1.0", 4739 | "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", 4740 | "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", 4741 | "dev": true, 4742 | "dependencies": { 4743 | "@types/unist": "^2.0.0", 4744 | "vfile": "^5.0.0" 4745 | }, 4746 | "funding": { 4747 | "type": "opencollective", 4748 | "url": "https://opencollective.com/unified" 4749 | } 4750 | }, 4751 | "node_modules/vfile-message": { 4752 | "version": "3.1.4", 4753 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", 4754 | "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", 4755 | "dev": true, 4756 | "dependencies": { 4757 | "@types/unist": "^2.0.0", 4758 | "unist-util-stringify-position": "^3.0.0" 4759 | }, 4760 | "funding": { 4761 | "type": "opencollective", 4762 | "url": "https://opencollective.com/unified" 4763 | } 4764 | }, 4765 | "node_modules/vite": { 4766 | "version": "4.1.4", 4767 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.4.tgz", 4768 | "integrity": "sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==", 4769 | "dev": true, 4770 | "dependencies": { 4771 | "esbuild": "^0.16.14", 4772 | "postcss": "^8.4.21", 4773 | "resolve": "^1.22.1", 4774 | "rollup": "^3.10.0" 4775 | }, 4776 | "bin": { 4777 | "vite": "bin/vite.js" 4778 | }, 4779 | "engines": { 4780 | "node": "^14.18.0 || >=16.0.0" 4781 | }, 4782 | "optionalDependencies": { 4783 | "fsevents": "~2.3.2" 4784 | }, 4785 | "peerDependencies": { 4786 | "@types/node": ">= 14", 4787 | "less": "*", 4788 | "sass": "*", 4789 | "stylus": "*", 4790 | "sugarss": "*", 4791 | "terser": "^5.4.0" 4792 | }, 4793 | "peerDependenciesMeta": { 4794 | "@types/node": { 4795 | "optional": true 4796 | }, 4797 | "less": { 4798 | "optional": true 4799 | }, 4800 | "sass": { 4801 | "optional": true 4802 | }, 4803 | "stylus": { 4804 | "optional": true 4805 | }, 4806 | "sugarss": { 4807 | "optional": true 4808 | }, 4809 | "terser": { 4810 | "optional": true 4811 | } 4812 | } 4813 | }, 4814 | "node_modules/vite-tsconfig-paths": { 4815 | "version": "3.5.0", 4816 | "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-3.5.0.tgz", 4817 | "integrity": "sha512-NKIubr7gXgh/3uniQaOytSg+aKWPrjquP6anAy+zCWEn6h9fB8z2/qdlfQrTgZWaXJ2pHVlllrSdRZltHn9P4g==", 4818 | "dev": true, 4819 | "dependencies": { 4820 | "debug": "^4.1.1", 4821 | "globrex": "^0.1.2", 4822 | "recrawl-sync": "^2.0.3", 4823 | "tsconfig-paths": "^4.0.0" 4824 | }, 4825 | "peerDependencies": { 4826 | "vite": ">2.0.0-0" 4827 | } 4828 | }, 4829 | "node_modules/web-streams-polyfill": { 4830 | "version": "3.2.1", 4831 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", 4832 | "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", 4833 | "dev": true, 4834 | "engines": { 4835 | "node": ">= 8" 4836 | } 4837 | }, 4838 | "node_modules/which": { 4839 | "version": "2.0.2", 4840 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4841 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4842 | "dependencies": { 4843 | "isexe": "^2.0.0" 4844 | }, 4845 | "bin": { 4846 | "node-which": "bin/node-which" 4847 | }, 4848 | "engines": { 4849 | "node": ">= 8" 4850 | } 4851 | }, 4852 | "node_modules/widest-line": { 4853 | "version": "4.0.1", 4854 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", 4855 | "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", 4856 | "dependencies": { 4857 | "string-width": "^5.0.1" 4858 | }, 4859 | "engines": { 4860 | "node": ">=12" 4861 | }, 4862 | "funding": { 4863 | "url": "https://github.com/sponsors/sindresorhus" 4864 | } 4865 | }, 4866 | "node_modules/word-wrap": { 4867 | "version": "1.2.3", 4868 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4869 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4870 | "dev": true, 4871 | "engines": { 4872 | "node": ">=0.10.0" 4873 | } 4874 | }, 4875 | "node_modules/wrap-ansi": { 4876 | "version": "8.1.0", 4877 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 4878 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 4879 | "dependencies": { 4880 | "ansi-styles": "^6.1.0", 4881 | "string-width": "^5.0.1", 4882 | "strip-ansi": "^7.0.1" 4883 | }, 4884 | "engines": { 4885 | "node": ">=12" 4886 | }, 4887 | "funding": { 4888 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4889 | } 4890 | }, 4891 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 4892 | "version": "6.0.1", 4893 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4894 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4895 | "engines": { 4896 | "node": ">=12" 4897 | }, 4898 | "funding": { 4899 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4900 | } 4901 | }, 4902 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 4903 | "version": "6.2.1", 4904 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 4905 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 4906 | "engines": { 4907 | "node": ">=12" 4908 | }, 4909 | "funding": { 4910 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4911 | } 4912 | }, 4913 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 4914 | "version": "7.0.1", 4915 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", 4916 | "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", 4917 | "dependencies": { 4918 | "ansi-regex": "^6.0.1" 4919 | }, 4920 | "engines": { 4921 | "node": ">=12" 4922 | }, 4923 | "funding": { 4924 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4925 | } 4926 | }, 4927 | "node_modules/wrappy": { 4928 | "version": "1.0.2", 4929 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4930 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4931 | "dev": true 4932 | }, 4933 | "node_modules/yallist": { 4934 | "version": "4.0.0", 4935 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4936 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 4937 | "dev": true 4938 | }, 4939 | "node_modules/yocto-queue": { 4940 | "version": "0.1.0", 4941 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4942 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4943 | "dev": true, 4944 | "engines": { 4945 | "node": ">=10" 4946 | }, 4947 | "funding": { 4948 | "url": "https://github.com/sponsors/sindresorhus" 4949 | } 4950 | }, 4951 | "node_modules/zod": { 4952 | "version": "3.21.4", 4953 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4954 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4955 | "dev": true, 4956 | "funding": { 4957 | "url": "https://github.com/sponsors/colinhacks" 4958 | } 4959 | }, 4960 | "node_modules/zwitch": { 4961 | "version": "2.0.4", 4962 | "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 4963 | "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 4964 | "dev": true, 4965 | "funding": { 4966 | "type": "github", 4967 | "url": "https://github.com/sponsors/wooorm" 4968 | } 4969 | } 4970 | } 4971 | } 4972 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-qwik-basic-starter", 3 | "description": "App with Routing built-in (recommended)", 4 | "engines": { 5 | "node": ">=15.0.0" 6 | }, 7 | "private": true, 8 | "scripts": { 9 | "build": "qwik build", 10 | "build.client": "vite build", 11 | "build.preview": "vite build --ssr src/entry.preview.tsx", 12 | "build.server": "vite build -c adapters/static/vite.config.ts", 13 | "build.types": "tsc --incremental --noEmit", 14 | "deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'", 15 | "dev": "vite --mode ssr", 16 | "dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force", 17 | "fmt": "prettier --write .", 18 | "fmt.check": "prettier --check .", 19 | "lint": "eslint \"src/**/*.ts*\"", 20 | "preview": "qwik build preview && vite preview --open", 21 | "start": "serve ./dist", 22 | "develop": "vite --open --mode ssr", 23 | "qwik": "qwik" 24 | }, 25 | "devDependencies": { 26 | "@builder.io/qwik": "0.21.0", 27 | "@builder.io/qwik-city": "0.5.3", 28 | "@types/eslint": "8.21.1", 29 | "@types/node": "^18.14.0", 30 | "@types/node-fetch": "latest", 31 | "@typescript-eslint/eslint-plugin": "5.54.0", 32 | "@typescript-eslint/parser": "5.54.0", 33 | "eslint": "8.35.0", 34 | "eslint-plugin-qwik": "0.21.0", 35 | "node-fetch": "3.3.0", 36 | "prettier": "2.8.4", 37 | "typescript": "4.9.5", 38 | "undici": "5.20.0", 39 | "vite": "4.1.4", 40 | "vite-tsconfig-paths": "3.5.0" 41 | }, 42 | "dependencies": { 43 | "serve": "^14.2.0" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/web-manifest-combined.json", 3 | "name": "qwik-project-name", 4 | "short_name": "Welcome to Qwik", 5 | "start_url": ".", 6 | "display": "standalone", 7 | "background_color": "#fff", 8 | "description": "A Qwik project app." 9 | } 10 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-qwik/ff8213880265069f56b02325532c8544332d78bb/public/robots.txt -------------------------------------------------------------------------------- /src/entry.dev.tsx: -------------------------------------------------------------------------------- 1 | /* 2 | * WHAT IS THIS FILE? 3 | * 4 | * Development entry point using only client-side modules: 5 | * - Do not use this mode in production! 6 | * - No SSR 7 | * - No portion of the application is pre-rendered on the server. 8 | * - All of the application is running eagerly in the browser. 9 | * - More code is transferred to the browser than in SSR mode. 10 | * - Optimizer/Serialization/Deserialization code is not exercised! 11 | */ 12 | import { render, type RenderOptions } from '@builder.io/qwik'; 13 | import Root from './root'; 14 | 15 | export default function (opts: RenderOptions) { 16 | return render(document, , opts); 17 | } 18 | -------------------------------------------------------------------------------- /src/entry.preview.tsx: -------------------------------------------------------------------------------- 1 | /* 2 | * WHAT IS THIS FILE? 3 | * 4 | * It's the bundle entry point for `npm run preview`. 5 | * That is, serving your app built in production mode. 6 | * 7 | * Feel free to modify this file, but don't remove it! 8 | * 9 | * Learn more about Vite's preview command: 10 | * - https://vitejs.dev/config/preview-options.html#preview-options 11 | * 12 | */ 13 | import { createQwikCity } from '@builder.io/qwik-city/middleware/node'; 14 | import render from './entry.ssr'; 15 | import qwikCityPlan from '@qwik-city-plan'; 16 | 17 | /** 18 | * The default export is the QwikCity adapter used by Vite preview. 19 | */ 20 | export default createQwikCity({ render, qwikCityPlan }); 21 | -------------------------------------------------------------------------------- /src/entry.ssr.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * WHAT IS THIS FILE? 3 | * 4 | * SSR entry point, in all cases the application is render outside the browser, this 5 | * entry point will be the common one. 6 | * 7 | * - Server (express, cloudflare...) 8 | * - npm run start 9 | * - npm run preview 10 | * - npm run build 11 | * 12 | */ 13 | import { renderToStream, type RenderToStreamOptions } from '@builder.io/qwik/server'; 14 | import { manifest } from '@qwik-client-manifest'; 15 | import Root from './root'; 16 | 17 | export default function (opts: RenderToStreamOptions) { 18 | return renderToStream(, { 19 | manifest, 20 | ...opts, 21 | // Use container attributes to set attributes on the html tag. 22 | containerAttributes: { 23 | lang: 'en-us', 24 | ...opts.containerAttributes, 25 | }, 26 | }); 27 | } 28 | -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url(https://i.imgur.com/CzmE8sy.png); 3 | background-size: cover; 4 | font-family: Inter, sans-serif 5 | } 6 | 7 | .reckless { 8 | font-family: Reckless Neue 9 | } -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- 1 | import { component$ } from '@builder.io/qwik'; 2 | import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister } from '@builder.io/qwik-city'; 3 | 4 | import './global.css'; 5 | 6 | export default component$(() => { 7 | /** 8 | * The root of a QwikCity site always start with the component, 9 | * immediately followed by the document's and . 10 | * 11 | * Dont remove the `` and `` elements. 12 | */ 13 | 14 | return ( 15 | 16 | 17 | 18 | 19 | Qwik project | Kinsta 20 |