this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cra -> vite

alice cf9edb05 7d2dd016

+617 -9318
+14
.eslintrc.cjs
··· 1 + module.exports = { 2 + env: { browser: true, es2020: true }, 3 + extends: [ 4 + 'eslint:recommended', 5 + 'plugin:@typescript-eslint/recommended', 6 + 'plugin:react-hooks/recommended', 7 + ], 8 + parser: '@typescript-eslint/parser', 9 + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 10 + plugins: ['react-refresh'], 11 + rules: { 12 + 'react-refresh/only-export-components': 'warn', 13 + }, 14 + }
-19
.eslintrc.json
··· 1 - { 2 - "env": { 3 - "es2021": true, 4 - "node": true 5 - }, 6 - "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], 7 - "overrides": [], 8 - "parser": "@typescript-eslint/parser", 9 - "parserOptions": { 10 - "ecmaVersion": "latest", 11 - "sourceType": "module" 12 - }, 13 - "plugins": ["@typescript-eslint"], 14 - "rules": { 15 - "@typescript-eslint/no-non-null-assertion": "off", 16 - "@typescript-eslint/no-explicit-any": "off", 17 - "no-debugger": "off" 18 - } 19 - }
+14 -124
.gitignore
··· 4 4 npm-debug.log* 5 5 yarn-debug.log* 6 6 yarn-error.log* 7 + pnpm-debug.log* 7 8 lerna-debug.log* 8 - .pnpm-debug.log* 9 - 10 - # Diagnostic reports (https://nodejs.org/api/report.html) 11 - report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 - 13 - # Runtime data 14 - pids 15 - *.pid 16 - *.seed 17 - *.pid.lock 18 - 19 - # Directory for instrumented libs generated by jscoverage/JSCover 20 - lib-cov 21 - 22 - # Coverage directory used by tools like istanbul 23 - coverage 24 - *.lcov 25 9 26 - # nyc test coverage 27 - .nyc_output 28 - 29 - # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 - .grunt 31 - 32 - # Bower dependency directory (https://bower.io/) 33 - bower_components 34 - 35 - # node-waf configuration 36 - .lock-wscript 37 - 38 - # Compiled binary addons (https://nodejs.org/api/addons.html) 39 - build/Release 40 - 41 - # Dependency directories 42 - node_modules/ 43 - jspm_packages/ 44 - 45 - # Snowpack dependency directory (https://snowpack.dev/) 46 - web_modules/ 47 - 48 - # TypeScript cache 49 - *.tsbuildinfo 50 - 51 - # Optional npm cache directory 52 - .npm 53 - 54 - # Optional eslint cache 55 - .eslintcache 56 - 57 - # Optional stylelint cache 58 - .stylelintcache 59 - 60 - # Microbundle cache 61 - .rpt2_cache/ 62 - .rts2_cache_cjs/ 63 - .rts2_cache_es/ 64 - .rts2_cache_umd/ 65 - 66 - # Optional REPL history 67 - .node_repl_history 68 - 69 - # Output of 'npm pack' 70 - *.tgz 71 - 72 - # Yarn Integrity file 73 - .yarn-integrity 74 - 75 - # dotenv environment variable files 76 - .env 77 - .env.development.local 78 - .env.test.local 79 - .env.production.local 80 - .env.local 81 - 82 - # parcel-bundler cache (https://parceljs.org/) 83 - .cache 84 - .parcel-cache 85 - 86 - # Next.js build output 87 - .next 88 - out 89 - 90 - # Nuxt.js build / generate output 91 - .nuxt 10 + node_modules 92 11 dist 12 + dist-ssr 13 + *.local 93 14 94 - # Gatsby files 95 - .cache/ 96 - # Comment in the public line in if your project uses Gatsby and not Next.js 97 - # https://nextjs.org/blog/next-9-1#public-directory-support 98 - # public 99 - 100 - # vuepress build output 101 - .vuepress/dist 102 - 103 - # vuepress v2.x temp and cache directory 104 - .temp 105 - .cache 106 - 107 - # Docusaurus cache and generated files 108 - .docusaurus 109 - 110 - # Serverless directories 111 - .serverless/ 112 - 113 - # FuseBox cache 114 - .fusebox/ 115 - 116 - # DynamoDB Local files 117 - .dynamodb/ 118 - 119 - # TernJS port file 120 - .tern-port 121 - 122 - # Stores VSCode versions used for testing VSCode extensions 123 - .vscode-test 124 - 125 - # yarn v2 126 - .yarn/cache 127 - .yarn/unplugged 128 - .yarn/build-state.yml 129 - .yarn/install-state.gz 130 - .pnp.* 131 - 132 - src/config.js 133 - 134 - build 15 + # Editor directories and files 16 + .vscode/* 17 + !.vscode/extensions.json 18 + .idea 19 + .DS_Store 20 + *.suo 21 + *.ntvs* 22 + *.njsproj 23 + *.sln 24 + *.sw?
+1 -1
Dockerfile
··· 5 5 WORKDIR /app 6 6 RUN pnpm i && pnpm run build 7 7 FROM pierrezemb/gostatic 8 - COPY --from=builder /app/build/ /srv/http/ 8 + COPY --from=builder /app/dist/ /srv/http/
+13
index.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8" /> 5 + <link rel="icon" type="image/svg+xml" href="/vite.svg" /> 6 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 + <title>Vite + React + TS</title> 8 + </head> 9 + <body> 10 + <div id="root"></div> 11 + <script type="module" src="/src/main.tsx"></script> 12 + </body> 13 + </html>
+17 -32
package.json
··· 1 1 { 2 - "name": "bluesky-starter-kit", 3 - "version": "1.0.0", 4 - "description": "", 5 - "main": "index.js", 2 + "name": "bsky-gh-v2", 3 + "private": true, 4 + "version": "0.0.0", 5 + "type": "module", 6 6 "scripts": { 7 - "start": "react-scripts start", 8 - "build": "react-scripts build", 9 - "test": "react-scripts test --env=jsdom", 10 - "eject": "react-scripts eject" 7 + "dev": "vite", 8 + "build": "tsc && vite build", 9 + "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", 10 + "preview": "vite preview" 11 11 }, 12 - "keywords": [], 13 - "author": "", 14 - "type": "module", 15 - "license": "ISC", 16 12 "dependencies": { 13 + "react": "^18.2.0", 14 + "react-dom": "^18.2.0", 17 15 "@atproto/api": "^0.2.7", 18 - "react": "18.2.0", 19 16 "react-calendar-heatmap": "^1.9.0", 20 - "react-dom": "18.2.0", 21 - "react-scripts": "^5.0.1", 22 17 "react-tooltip": "^5.11.1" 23 18 }, 24 19 "devDependencies": { 25 - "@types/node": "^18.15.13", 26 20 "@types/react": "^18.0.37", 27 21 "@types/react-dom": "^18.0.11", 28 - "@typescript-eslint/eslint-plugin": "^5.58.0", 29 - "@typescript-eslint/parser": "^5.58.0", 22 + "@typescript-eslint/eslint-plugin": "^5.59.0", 23 + "@typescript-eslint/parser": "^5.59.0", 24 + "@vitejs/plugin-react-swc": "^3.3.0", 30 25 "eslint": "^8.38.0", 31 - "prettier": "^2.8.7", 32 - "typescript": "4.9.5" 33 - }, 34 - "browserslist": { 35 - "production": [ 36 - ">0.2%", 37 - "not dead", 38 - "not op_mini all" 39 - ], 40 - "development": [ 41 - "last 1 chrome version", 42 - "last 1 firefox version", 43 - "last 1 safari version" 44 - ] 26 + "eslint-plugin-react-hooks": "^4.6.0", 27 + "eslint-plugin-react-refresh": "^0.3.4", 28 + "typescript": "^5.0.4", 29 + "vite": "^4.3.1" 45 30 } 46 31 }
+520 -8998
pnpm-lock.yaml
··· 5 5 specifier: ^0.2.7 6 6 version: 0.2.7 7 7 react: 8 - specifier: 18.2.0 8 + specifier: ^18.2.0 9 9 version: 18.2.0 10 10 react-calendar-heatmap: 11 11 specifier: ^1.9.0 12 12 version: 1.9.0(react@18.2.0) 13 13 react-dom: 14 - specifier: 18.2.0 14 + specifier: ^18.2.0 15 15 version: 18.2.0(react@18.2.0) 16 - react-scripts: 17 - specifier: ^5.0.1 18 - version: 5.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0)(react@18.2.0)(typescript@4.9.5) 19 16 react-tooltip: 20 17 specifier: ^5.11.1 21 18 version: 5.11.1(react-dom@18.2.0)(react@18.2.0) 22 19 23 20 devDependencies: 24 - '@types/node': 25 - specifier: ^18.15.13 26 - version: 18.15.13 27 21 '@types/react': 28 22 specifier: ^18.0.37 29 23 version: 18.0.37 ··· 31 25 specifier: ^18.0.11 32 26 version: 18.0.11 33 27 '@typescript-eslint/eslint-plugin': 34 - specifier: ^5.58.0 35 - version: 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) 28 + specifier: ^5.59.0 29 + version: 5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.38.0)(typescript@5.0.4) 36 30 '@typescript-eslint/parser': 37 - specifier: ^5.58.0 38 - version: 5.58.0(eslint@8.38.0)(typescript@4.9.5) 31 + specifier: ^5.59.0 32 + version: 5.59.0(eslint@8.38.0)(typescript@5.0.4) 33 + '@vitejs/plugin-react-swc': 34 + specifier: ^3.3.0 35 + version: 3.3.0(vite@4.3.1) 39 36 eslint: 40 37 specifier: ^8.38.0 41 38 version: 8.38.0 42 - prettier: 43 - specifier: ^2.8.7 44 - version: 2.8.7 39 + eslint-plugin-react-hooks: 40 + specifier: ^4.6.0 41 + version: 4.6.0(eslint@8.38.0) 42 + eslint-plugin-react-refresh: 43 + specifier: ^0.3.4 44 + version: 0.3.4(eslint@8.38.0) 45 45 typescript: 46 - specifier: 4.9.5 47 - version: 4.9.5 46 + specifier: ^5.0.4 47 + version: 5.0.4 48 + vite: 49 + specifier: ^4.3.1 50 + version: 4.3.1 48 51 49 52 packages: 50 53 51 - /@ampproject/remapping@2.2.1: 52 - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} 53 - engines: {node: '>=6.0.0'} 54 - dependencies: 55 - '@jridgewell/gen-mapping': 0.3.3 56 - '@jridgewell/trace-mapping': 0.3.18 57 - dev: false 58 - 59 - /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): 60 - resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} 61 - engines: {node: '>=10'} 62 - peerDependencies: 63 - ajv: '>=8' 64 - dependencies: 65 - ajv: 8.12.0 66 - json-schema: 0.4.0 67 - jsonpointer: 5.0.1 68 - leven: 3.1.0 69 - dev: false 70 - 71 54 /@atproto/api@0.2.7: 72 55 resolution: {integrity: sha512-Sz+lLD5apC2f0FSClkElIrt4w+aLgzqJ/wqtFO7xuQH8+hGfxdfGuVIK5GEDQ7epeDlWvVhVSouP6ZdGSKKtSA==} 73 56 dependencies: ··· 122 105 zod: 3.21.4 123 106 dev: false 124 107 125 - /@babel/code-frame@7.21.4: 126 - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} 127 - engines: {node: '>=6.9.0'} 128 - dependencies: 129 - '@babel/highlight': 7.18.6 130 - dev: false 131 - 132 - /@babel/compat-data@7.21.4: 133 - resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==} 134 - engines: {node: '>=6.9.0'} 135 - dev: false 136 - 137 - /@babel/core@7.21.4: 138 - resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} 139 - engines: {node: '>=6.9.0'} 140 - dependencies: 141 - '@ampproject/remapping': 2.2.1 142 - '@babel/code-frame': 7.21.4 143 - '@babel/generator': 7.21.4 144 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 145 - '@babel/helper-module-transforms': 7.21.2 146 - '@babel/helpers': 7.21.0 147 - '@babel/parser': 7.21.4 148 - '@babel/template': 7.20.7 149 - '@babel/traverse': 7.21.4 150 - '@babel/types': 7.21.4 151 - convert-source-map: 1.9.0 152 - debug: 4.3.4 153 - gensync: 1.0.0-beta.2 154 - json5: 2.2.3 155 - semver: 6.3.0 156 - transitivePeerDependencies: 157 - - supports-color 158 - dev: false 159 - 160 - /@babel/eslint-parser@7.21.3(@babel/core@7.21.4)(eslint@8.38.0): 161 - resolution: {integrity: sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==} 162 - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 163 - peerDependencies: 164 - '@babel/core': '>=7.11.0' 165 - eslint: ^7.5.0 || ^8.0.0 166 - dependencies: 167 - '@babel/core': 7.21.4 168 - '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 169 - eslint: 8.38.0 170 - eslint-visitor-keys: 2.1.0 171 - semver: 6.3.0 172 - dev: false 173 - 174 - /@babel/generator@7.21.4: 175 - resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} 176 - engines: {node: '>=6.9.0'} 177 - dependencies: 178 - '@babel/types': 7.21.4 179 - '@jridgewell/gen-mapping': 0.3.3 180 - '@jridgewell/trace-mapping': 0.3.18 181 - jsesc: 2.5.2 182 - dev: false 183 - 184 - /@babel/helper-annotate-as-pure@7.18.6: 185 - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} 186 - engines: {node: '>=6.9.0'} 187 - dependencies: 188 - '@babel/types': 7.21.4 189 - dev: false 190 - 191 - /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: 192 - resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} 193 - engines: {node: '>=6.9.0'} 194 - dependencies: 195 - '@babel/helper-explode-assignable-expression': 7.18.6 196 - '@babel/types': 7.21.4 197 - dev: false 198 - 199 - /@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4): 200 - resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==} 201 - engines: {node: '>=6.9.0'} 202 - peerDependencies: 203 - '@babel/core': ^7.0.0 204 - dependencies: 205 - '@babel/compat-data': 7.21.4 206 - '@babel/core': 7.21.4 207 - '@babel/helper-validator-option': 7.21.0 208 - browserslist: 4.21.5 209 - lru-cache: 5.1.1 210 - semver: 6.3.0 211 - dev: false 212 - 213 - /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.21.4): 214 - resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} 215 - engines: {node: '>=6.9.0'} 216 - peerDependencies: 217 - '@babel/core': ^7.0.0 218 - dependencies: 219 - '@babel/core': 7.21.4 220 - '@babel/helper-annotate-as-pure': 7.18.6 221 - '@babel/helper-environment-visitor': 7.18.9 222 - '@babel/helper-function-name': 7.21.0 223 - '@babel/helper-member-expression-to-functions': 7.21.0 224 - '@babel/helper-optimise-call-expression': 7.18.6 225 - '@babel/helper-replace-supers': 7.20.7 226 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 227 - '@babel/helper-split-export-declaration': 7.18.6 228 - transitivePeerDependencies: 229 - - supports-color 230 - dev: false 231 - 232 - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.21.4): 233 - resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} 234 - engines: {node: '>=6.9.0'} 235 - peerDependencies: 236 - '@babel/core': ^7.0.0 237 - dependencies: 238 - '@babel/core': 7.21.4 239 - '@babel/helper-annotate-as-pure': 7.18.6 240 - regexpu-core: 5.3.2 241 - dev: false 242 - 243 - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.4): 244 - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} 245 - peerDependencies: 246 - '@babel/core': ^7.4.0-0 247 - dependencies: 248 - '@babel/core': 7.21.4 249 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 250 - '@babel/helper-plugin-utils': 7.20.2 251 - debug: 4.3.4 252 - lodash.debounce: 4.0.8 253 - resolve: 1.22.2 254 - semver: 6.3.0 255 - transitivePeerDependencies: 256 - - supports-color 257 - dev: false 258 - 259 - /@babel/helper-environment-visitor@7.18.9: 260 - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} 261 - engines: {node: '>=6.9.0'} 262 - dev: false 263 - 264 - /@babel/helper-explode-assignable-expression@7.18.6: 265 - resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} 266 - engines: {node: '>=6.9.0'} 267 - dependencies: 268 - '@babel/types': 7.21.4 269 - dev: false 270 - 271 - /@babel/helper-function-name@7.21.0: 272 - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} 273 - engines: {node: '>=6.9.0'} 274 - dependencies: 275 - '@babel/template': 7.20.7 276 - '@babel/types': 7.21.4 277 - dev: false 278 - 279 - /@babel/helper-hoist-variables@7.18.6: 280 - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} 281 - engines: {node: '>=6.9.0'} 282 - dependencies: 283 - '@babel/types': 7.21.4 284 - dev: false 285 - 286 - /@babel/helper-member-expression-to-functions@7.21.0: 287 - resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} 288 - engines: {node: '>=6.9.0'} 289 - dependencies: 290 - '@babel/types': 7.21.4 291 - dev: false 292 - 293 - /@babel/helper-module-imports@7.21.4: 294 - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} 295 - engines: {node: '>=6.9.0'} 296 - dependencies: 297 - '@babel/types': 7.21.4 298 - dev: false 299 - 300 - /@babel/helper-module-transforms@7.21.2: 301 - resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} 302 - engines: {node: '>=6.9.0'} 303 - dependencies: 304 - '@babel/helper-environment-visitor': 7.18.9 305 - '@babel/helper-module-imports': 7.21.4 306 - '@babel/helper-simple-access': 7.20.2 307 - '@babel/helper-split-export-declaration': 7.18.6 308 - '@babel/helper-validator-identifier': 7.19.1 309 - '@babel/template': 7.20.7 310 - '@babel/traverse': 7.21.4 311 - '@babel/types': 7.21.4 312 - transitivePeerDependencies: 313 - - supports-color 314 - dev: false 315 - 316 - /@babel/helper-optimise-call-expression@7.18.6: 317 - resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} 318 - engines: {node: '>=6.9.0'} 319 - dependencies: 320 - '@babel/types': 7.21.4 321 - dev: false 322 - 323 - /@babel/helper-plugin-utils@7.20.2: 324 - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} 325 - engines: {node: '>=6.9.0'} 326 - dev: false 327 - 328 - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.4): 329 - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} 330 - engines: {node: '>=6.9.0'} 331 - peerDependencies: 332 - '@babel/core': ^7.0.0 333 - dependencies: 334 - '@babel/core': 7.21.4 335 - '@babel/helper-annotate-as-pure': 7.18.6 336 - '@babel/helper-environment-visitor': 7.18.9 337 - '@babel/helper-wrap-function': 7.20.5 338 - '@babel/types': 7.21.4 339 - transitivePeerDependencies: 340 - - supports-color 341 - dev: false 342 - 343 - /@babel/helper-replace-supers@7.20.7: 344 - resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} 345 - engines: {node: '>=6.9.0'} 346 - dependencies: 347 - '@babel/helper-environment-visitor': 7.18.9 348 - '@babel/helper-member-expression-to-functions': 7.21.0 349 - '@babel/helper-optimise-call-expression': 7.18.6 350 - '@babel/template': 7.20.7 351 - '@babel/traverse': 7.21.4 352 - '@babel/types': 7.21.4 353 - transitivePeerDependencies: 354 - - supports-color 355 - dev: false 356 - 357 - /@babel/helper-simple-access@7.20.2: 358 - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} 359 - engines: {node: '>=6.9.0'} 360 - dependencies: 361 - '@babel/types': 7.21.4 362 - dev: false 363 - 364 - /@babel/helper-skip-transparent-expression-wrappers@7.20.0: 365 - resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} 366 - engines: {node: '>=6.9.0'} 367 - dependencies: 368 - '@babel/types': 7.21.4 369 - dev: false 370 - 371 - /@babel/helper-split-export-declaration@7.18.6: 372 - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} 373 - engines: {node: '>=6.9.0'} 374 - dependencies: 375 - '@babel/types': 7.21.4 376 - dev: false 377 - 378 - /@babel/helper-string-parser@7.19.4: 379 - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} 380 - engines: {node: '>=6.9.0'} 381 - dev: false 382 - 383 - /@babel/helper-validator-identifier@7.19.1: 384 - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 385 - engines: {node: '>=6.9.0'} 386 - dev: false 387 - 388 - /@babel/helper-validator-option@7.21.0: 389 - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} 390 - engines: {node: '>=6.9.0'} 391 - dev: false 392 - 393 - /@babel/helper-wrap-function@7.20.5: 394 - resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} 395 - engines: {node: '>=6.9.0'} 396 - dependencies: 397 - '@babel/helper-function-name': 7.21.0 398 - '@babel/template': 7.20.7 399 - '@babel/traverse': 7.21.4 400 - '@babel/types': 7.21.4 401 - transitivePeerDependencies: 402 - - supports-color 403 - dev: false 404 - 405 - /@babel/helpers@7.21.0: 406 - resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} 407 - engines: {node: '>=6.9.0'} 408 - dependencies: 409 - '@babel/template': 7.20.7 410 - '@babel/traverse': 7.21.4 411 - '@babel/types': 7.21.4 412 - transitivePeerDependencies: 413 - - supports-color 414 - dev: false 415 - 416 - /@babel/highlight@7.18.6: 417 - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 418 - engines: {node: '>=6.9.0'} 419 - dependencies: 420 - '@babel/helper-validator-identifier': 7.19.1 421 - chalk: 2.4.2 422 - js-tokens: 4.0.0 423 - dev: false 424 - 425 - /@babel/parser@7.21.4: 426 - resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} 427 - engines: {node: '>=6.0.0'} 428 - hasBin: true 429 - dependencies: 430 - '@babel/types': 7.21.4 431 - dev: false 432 - 433 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.4): 434 - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} 435 - engines: {node: '>=6.9.0'} 436 - peerDependencies: 437 - '@babel/core': ^7.0.0 438 - dependencies: 439 - '@babel/core': 7.21.4 440 - '@babel/helper-plugin-utils': 7.20.2 441 - dev: false 442 - 443 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.4): 444 - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} 445 - engines: {node: '>=6.9.0'} 446 - peerDependencies: 447 - '@babel/core': ^7.13.0 448 - dependencies: 449 - '@babel/core': 7.21.4 450 - '@babel/helper-plugin-utils': 7.20.2 451 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 452 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4) 453 - dev: false 454 - 455 - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.4): 456 - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} 457 - engines: {node: '>=6.9.0'} 458 - peerDependencies: 459 - '@babel/core': ^7.0.0-0 460 - dependencies: 461 - '@babel/core': 7.21.4 462 - '@babel/helper-environment-visitor': 7.18.9 463 - '@babel/helper-plugin-utils': 7.20.2 464 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4) 465 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) 466 - transitivePeerDependencies: 467 - - supports-color 468 - dev: false 469 - 470 - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.4): 471 - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} 472 - engines: {node: '>=6.9.0'} 473 - peerDependencies: 474 - '@babel/core': ^7.0.0-0 475 - dependencies: 476 - '@babel/core': 7.21.4 477 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 478 - '@babel/helper-plugin-utils': 7.20.2 479 - transitivePeerDependencies: 480 - - supports-color 481 - dev: false 482 - 483 - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.4): 484 - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} 485 - engines: {node: '>=6.9.0'} 486 - peerDependencies: 487 - '@babel/core': ^7.12.0 488 - dependencies: 489 - '@babel/core': 7.21.4 490 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 491 - '@babel/helper-plugin-utils': 7.20.2 492 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4) 493 - transitivePeerDependencies: 494 - - supports-color 495 - dev: false 496 - 497 - /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.4): 498 - resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==} 499 - engines: {node: '>=6.9.0'} 500 - peerDependencies: 501 - '@babel/core': ^7.0.0-0 502 - dependencies: 503 - '@babel/core': 7.21.4 504 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 505 - '@babel/helper-plugin-utils': 7.20.2 506 - '@babel/helper-replace-supers': 7.20.7 507 - '@babel/helper-split-export-declaration': 7.18.6 508 - '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.4) 509 - transitivePeerDependencies: 510 - - supports-color 511 - dev: false 512 - 513 - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.4): 514 - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} 515 - engines: {node: '>=6.9.0'} 516 - peerDependencies: 517 - '@babel/core': ^7.0.0-0 518 - dependencies: 519 - '@babel/core': 7.21.4 520 - '@babel/helper-plugin-utils': 7.20.2 521 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4) 522 - dev: false 523 - 524 - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.4): 525 - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} 526 - engines: {node: '>=6.9.0'} 527 - peerDependencies: 528 - '@babel/core': ^7.0.0-0 529 - dependencies: 530 - '@babel/core': 7.21.4 531 - '@babel/helper-plugin-utils': 7.20.2 532 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4) 533 - dev: false 534 - 535 - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.4): 536 - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} 537 - engines: {node: '>=6.9.0'} 538 - peerDependencies: 539 - '@babel/core': ^7.0.0-0 540 - dependencies: 541 - '@babel/core': 7.21.4 542 - '@babel/helper-plugin-utils': 7.20.2 543 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) 544 - dev: false 545 - 546 - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.4): 547 - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} 548 - engines: {node: '>=6.9.0'} 549 - peerDependencies: 550 - '@babel/core': ^7.0.0-0 551 - dependencies: 552 - '@babel/core': 7.21.4 553 - '@babel/helper-plugin-utils': 7.20.2 554 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) 555 - dev: false 556 - 557 - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.4): 558 - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 559 - engines: {node: '>=6.9.0'} 560 - peerDependencies: 561 - '@babel/core': ^7.0.0-0 562 - dependencies: 563 - '@babel/core': 7.21.4 564 - '@babel/helper-plugin-utils': 7.20.2 565 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) 566 - dev: false 567 - 568 - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.4): 569 - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} 570 - engines: {node: '>=6.9.0'} 571 - peerDependencies: 572 - '@babel/core': ^7.0.0-0 573 - dependencies: 574 - '@babel/core': 7.21.4 575 - '@babel/helper-plugin-utils': 7.20.2 576 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) 577 - dev: false 578 - 579 - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.4): 580 - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 581 - engines: {node: '>=6.9.0'} 582 - peerDependencies: 583 - '@babel/core': ^7.0.0-0 584 - dependencies: 585 - '@babel/compat-data': 7.21.4 586 - '@babel/core': 7.21.4 587 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 588 - '@babel/helper-plugin-utils': 7.20.2 589 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) 590 - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4) 591 - dev: false 592 - 593 - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.4): 594 - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} 595 - engines: {node: '>=6.9.0'} 596 - peerDependencies: 597 - '@babel/core': ^7.0.0-0 598 - dependencies: 599 - '@babel/core': 7.21.4 600 - '@babel/helper-plugin-utils': 7.20.2 601 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) 602 - dev: false 603 - 604 - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.4): 605 - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} 606 - engines: {node: '>=6.9.0'} 607 - peerDependencies: 608 - '@babel/core': ^7.0.0-0 609 - dependencies: 610 - '@babel/core': 7.21.4 611 - '@babel/helper-plugin-utils': 7.20.2 612 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 613 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) 614 - dev: false 615 - 616 - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.4): 617 - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 618 - engines: {node: '>=6.9.0'} 619 - peerDependencies: 620 - '@babel/core': ^7.0.0-0 621 - dependencies: 622 - '@babel/core': 7.21.4 623 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 624 - '@babel/helper-plugin-utils': 7.20.2 625 - transitivePeerDependencies: 626 - - supports-color 627 - dev: false 628 - 629 - /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.4): 630 - resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} 631 - engines: {node: '>=6.9.0'} 632 - peerDependencies: 633 - '@babel/core': ^7.0.0-0 634 - dependencies: 635 - '@babel/core': 7.21.4 636 - '@babel/helper-annotate-as-pure': 7.18.6 637 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 638 - '@babel/helper-plugin-utils': 7.20.2 639 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4) 640 - transitivePeerDependencies: 641 - - supports-color 642 - dev: false 643 - 644 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.4): 645 - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} 646 - engines: {node: '>=4'} 647 - peerDependencies: 648 - '@babel/core': ^7.0.0-0 649 - dependencies: 650 - '@babel/core': 7.21.4 651 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4) 652 - '@babel/helper-plugin-utils': 7.20.2 653 - dev: false 654 - 655 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4): 656 - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} 657 - peerDependencies: 658 - '@babel/core': ^7.0.0-0 659 - dependencies: 660 - '@babel/core': 7.21.4 661 - '@babel/helper-plugin-utils': 7.20.2 662 - dev: false 663 - 664 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4): 665 - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} 666 - peerDependencies: 667 - '@babel/core': ^7.0.0-0 668 - dependencies: 669 - '@babel/core': 7.21.4 670 - '@babel/helper-plugin-utils': 7.20.2 671 - dev: false 672 - 673 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4): 674 - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} 675 - peerDependencies: 676 - '@babel/core': ^7.0.0-0 677 - dependencies: 678 - '@babel/core': 7.21.4 679 - '@babel/helper-plugin-utils': 7.20.2 680 - dev: false 681 - 682 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.4): 683 - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} 684 - engines: {node: '>=6.9.0'} 685 - peerDependencies: 686 - '@babel/core': ^7.0.0-0 687 - dependencies: 688 - '@babel/core': 7.21.4 689 - '@babel/helper-plugin-utils': 7.20.2 690 - dev: false 691 - 692 - /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.4): 693 - resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==} 694 - engines: {node: '>=6.9.0'} 695 - peerDependencies: 696 - '@babel/core': ^7.0.0-0 697 - dependencies: 698 - '@babel/core': 7.21.4 699 - '@babel/helper-plugin-utils': 7.20.2 700 - dev: false 701 - 702 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4): 703 - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} 704 - peerDependencies: 705 - '@babel/core': ^7.0.0-0 706 - dependencies: 707 - '@babel/core': 7.21.4 708 - '@babel/helper-plugin-utils': 7.20.2 709 - dev: false 710 - 711 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.4): 712 - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} 713 - peerDependencies: 714 - '@babel/core': ^7.0.0-0 715 - dependencies: 716 - '@babel/core': 7.21.4 717 - '@babel/helper-plugin-utils': 7.20.2 718 - dev: false 719 - 720 - /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.21.4): 721 - resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} 722 - engines: {node: '>=6.9.0'} 723 - peerDependencies: 724 - '@babel/core': ^7.0.0-0 725 - dependencies: 726 - '@babel/core': 7.21.4 727 - '@babel/helper-plugin-utils': 7.20.2 728 - dev: false 729 - 730 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.4): 731 - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} 732 - engines: {node: '>=6.9.0'} 733 - peerDependencies: 734 - '@babel/core': ^7.0.0-0 735 - dependencies: 736 - '@babel/core': 7.21.4 737 - '@babel/helper-plugin-utils': 7.20.2 738 - dev: false 739 - 740 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4): 741 - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} 742 - peerDependencies: 743 - '@babel/core': ^7.0.0-0 744 - dependencies: 745 - '@babel/core': 7.21.4 746 - '@babel/helper-plugin-utils': 7.20.2 747 - dev: false 748 - 749 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4): 750 - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} 751 - peerDependencies: 752 - '@babel/core': ^7.0.0-0 753 - dependencies: 754 - '@babel/core': 7.21.4 755 - '@babel/helper-plugin-utils': 7.20.2 756 - dev: false 757 - 758 - /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.21.4): 759 - resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} 760 - engines: {node: '>=6.9.0'} 761 - peerDependencies: 762 - '@babel/core': ^7.0.0-0 763 - dependencies: 764 - '@babel/core': 7.21.4 765 - '@babel/helper-plugin-utils': 7.20.2 766 - dev: false 767 - 768 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4): 769 - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} 770 - peerDependencies: 771 - '@babel/core': ^7.0.0-0 772 - dependencies: 773 - '@babel/core': 7.21.4 774 - '@babel/helper-plugin-utils': 7.20.2 775 - dev: false 776 - 777 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4): 778 - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} 779 - peerDependencies: 780 - '@babel/core': ^7.0.0-0 781 - dependencies: 782 - '@babel/core': 7.21.4 783 - '@babel/helper-plugin-utils': 7.20.2 784 - dev: false 785 - 786 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4): 787 - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} 788 - peerDependencies: 789 - '@babel/core': ^7.0.0-0 790 - dependencies: 791 - '@babel/core': 7.21.4 792 - '@babel/helper-plugin-utils': 7.20.2 793 - dev: false 794 - 795 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4): 796 - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} 797 - peerDependencies: 798 - '@babel/core': ^7.0.0-0 799 - dependencies: 800 - '@babel/core': 7.21.4 801 - '@babel/helper-plugin-utils': 7.20.2 802 - dev: false 803 - 804 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4): 805 - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} 806 - peerDependencies: 807 - '@babel/core': ^7.0.0-0 808 - dependencies: 809 - '@babel/core': 7.21.4 810 - '@babel/helper-plugin-utils': 7.20.2 811 - dev: false 812 - 813 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4): 814 - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} 815 - peerDependencies: 816 - '@babel/core': ^7.0.0-0 817 - dependencies: 818 - '@babel/core': 7.21.4 819 - '@babel/helper-plugin-utils': 7.20.2 820 - dev: false 821 - 822 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.4): 823 - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} 824 - engines: {node: '>=6.9.0'} 825 - peerDependencies: 826 - '@babel/core': ^7.0.0-0 827 - dependencies: 828 - '@babel/core': 7.21.4 829 - '@babel/helper-plugin-utils': 7.20.2 830 - dev: false 831 - 832 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4): 833 - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} 834 - engines: {node: '>=6.9.0'} 835 - peerDependencies: 836 - '@babel/core': ^7.0.0-0 837 - dependencies: 838 - '@babel/core': 7.21.4 839 - '@babel/helper-plugin-utils': 7.20.2 840 - dev: false 841 - 842 - /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4): 843 - resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} 844 - engines: {node: '>=6.9.0'} 845 - peerDependencies: 846 - '@babel/core': ^7.0.0-0 847 - dependencies: 848 - '@babel/core': 7.21.4 849 - '@babel/helper-plugin-utils': 7.20.2 850 - dev: false 851 - 852 - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.4): 853 - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} 854 - engines: {node: '>=6.9.0'} 855 - peerDependencies: 856 - '@babel/core': ^7.0.0-0 857 - dependencies: 858 - '@babel/core': 7.21.4 859 - '@babel/helper-plugin-utils': 7.20.2 860 - dev: false 861 - 862 - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.4): 863 - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} 864 - engines: {node: '>=6.9.0'} 865 - peerDependencies: 866 - '@babel/core': ^7.0.0-0 867 - dependencies: 868 - '@babel/core': 7.21.4 869 - '@babel/helper-module-imports': 7.21.4 870 - '@babel/helper-plugin-utils': 7.20.2 871 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.4) 872 - transitivePeerDependencies: 873 - - supports-color 874 - dev: false 875 - 876 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.4): 877 - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} 878 - engines: {node: '>=6.9.0'} 879 - peerDependencies: 880 - '@babel/core': ^7.0.0-0 881 - dependencies: 882 - '@babel/core': 7.21.4 883 - '@babel/helper-plugin-utils': 7.20.2 884 - dev: false 885 - 886 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.4): 887 - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} 888 - engines: {node: '>=6.9.0'} 889 - peerDependencies: 890 - '@babel/core': ^7.0.0-0 891 - dependencies: 892 - '@babel/core': 7.21.4 893 - '@babel/helper-plugin-utils': 7.20.2 894 - dev: false 895 - 896 - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.4): 897 - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} 898 - engines: {node: '>=6.9.0'} 899 - peerDependencies: 900 - '@babel/core': ^7.0.0-0 901 - dependencies: 902 - '@babel/core': 7.21.4 903 - '@babel/helper-annotate-as-pure': 7.18.6 904 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 905 - '@babel/helper-environment-visitor': 7.18.9 906 - '@babel/helper-function-name': 7.21.0 907 - '@babel/helper-optimise-call-expression': 7.18.6 908 - '@babel/helper-plugin-utils': 7.20.2 909 - '@babel/helper-replace-supers': 7.20.7 910 - '@babel/helper-split-export-declaration': 7.18.6 911 - globals: 11.12.0 912 - transitivePeerDependencies: 913 - - supports-color 914 - dev: false 915 - 916 - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.4): 917 - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} 918 - engines: {node: '>=6.9.0'} 919 - peerDependencies: 920 - '@babel/core': ^7.0.0-0 921 - dependencies: 922 - '@babel/core': 7.21.4 923 - '@babel/helper-plugin-utils': 7.20.2 924 - '@babel/template': 7.20.7 925 - dev: false 926 - 927 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.4): 928 - resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} 929 - engines: {node: '>=6.9.0'} 930 - peerDependencies: 931 - '@babel/core': ^7.0.0-0 932 - dependencies: 933 - '@babel/core': 7.21.4 934 - '@babel/helper-plugin-utils': 7.20.2 935 - dev: false 936 - 937 - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.4): 938 - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} 939 - engines: {node: '>=6.9.0'} 940 - peerDependencies: 941 - '@babel/core': ^7.0.0-0 942 - dependencies: 943 - '@babel/core': 7.21.4 944 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4) 945 - '@babel/helper-plugin-utils': 7.20.2 946 - dev: false 947 - 948 - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.4): 949 - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} 950 - engines: {node: '>=6.9.0'} 951 - peerDependencies: 952 - '@babel/core': ^7.0.0-0 953 - dependencies: 954 - '@babel/core': 7.21.4 955 - '@babel/helper-plugin-utils': 7.20.2 956 - dev: false 957 - 958 - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.4): 959 - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} 960 - engines: {node: '>=6.9.0'} 961 - peerDependencies: 962 - '@babel/core': ^7.0.0-0 963 - dependencies: 964 - '@babel/core': 7.21.4 965 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 966 - '@babel/helper-plugin-utils': 7.20.2 967 - dev: false 968 - 969 - /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.4): 970 - resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} 971 - engines: {node: '>=6.9.0'} 972 - peerDependencies: 973 - '@babel/core': ^7.0.0-0 974 - dependencies: 975 - '@babel/core': 7.21.4 976 - '@babel/helper-plugin-utils': 7.20.2 977 - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.4) 978 - dev: false 979 - 980 - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.4): 981 - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} 982 - engines: {node: '>=6.9.0'} 983 - peerDependencies: 984 - '@babel/core': ^7.0.0-0 985 - dependencies: 986 - '@babel/core': 7.21.4 987 - '@babel/helper-plugin-utils': 7.20.2 988 - dev: false 989 - 990 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.4): 991 - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} 992 - engines: {node: '>=6.9.0'} 993 - peerDependencies: 994 - '@babel/core': ^7.0.0-0 995 - dependencies: 996 - '@babel/core': 7.21.4 997 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 998 - '@babel/helper-function-name': 7.21.0 999 - '@babel/helper-plugin-utils': 7.20.2 1000 - dev: false 1001 - 1002 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.4): 1003 - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} 1004 - engines: {node: '>=6.9.0'} 1005 - peerDependencies: 1006 - '@babel/core': ^7.0.0-0 1007 - dependencies: 1008 - '@babel/core': 7.21.4 1009 - '@babel/helper-plugin-utils': 7.20.2 1010 - dev: false 1011 - 1012 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.4): 1013 - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} 1014 - engines: {node: '>=6.9.0'} 1015 - peerDependencies: 1016 - '@babel/core': ^7.0.0-0 1017 - dependencies: 1018 - '@babel/core': 7.21.4 1019 - '@babel/helper-plugin-utils': 7.20.2 1020 - dev: false 1021 - 1022 - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.4): 1023 - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} 1024 - engines: {node: '>=6.9.0'} 1025 - peerDependencies: 1026 - '@babel/core': ^7.0.0-0 1027 - dependencies: 1028 - '@babel/core': 7.21.4 1029 - '@babel/helper-module-transforms': 7.21.2 1030 - '@babel/helper-plugin-utils': 7.20.2 1031 - transitivePeerDependencies: 1032 - - supports-color 1033 - dev: false 1034 - 1035 - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.4): 1036 - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} 1037 - engines: {node: '>=6.9.0'} 1038 - peerDependencies: 1039 - '@babel/core': ^7.0.0-0 1040 - dependencies: 1041 - '@babel/core': 7.21.4 1042 - '@babel/helper-module-transforms': 7.21.2 1043 - '@babel/helper-plugin-utils': 7.20.2 1044 - '@babel/helper-simple-access': 7.20.2 1045 - transitivePeerDependencies: 1046 - - supports-color 1047 - dev: false 1048 - 1049 - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.4): 1050 - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} 1051 - engines: {node: '>=6.9.0'} 1052 - peerDependencies: 1053 - '@babel/core': ^7.0.0-0 1054 - dependencies: 1055 - '@babel/core': 7.21.4 1056 - '@babel/helper-hoist-variables': 7.18.6 1057 - '@babel/helper-module-transforms': 7.21.2 1058 - '@babel/helper-plugin-utils': 7.20.2 1059 - '@babel/helper-validator-identifier': 7.19.1 1060 - transitivePeerDependencies: 1061 - - supports-color 1062 - dev: false 1063 - 1064 - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.4): 1065 - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} 1066 - engines: {node: '>=6.9.0'} 1067 - peerDependencies: 1068 - '@babel/core': ^7.0.0-0 1069 - dependencies: 1070 - '@babel/core': 7.21.4 1071 - '@babel/helper-module-transforms': 7.21.2 1072 - '@babel/helper-plugin-utils': 7.20.2 1073 - transitivePeerDependencies: 1074 - - supports-color 1075 - dev: false 1076 - 1077 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.4): 1078 - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} 1079 - engines: {node: '>=6.9.0'} 1080 - peerDependencies: 1081 - '@babel/core': ^7.0.0 1082 - dependencies: 1083 - '@babel/core': 7.21.4 1084 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4) 1085 - '@babel/helper-plugin-utils': 7.20.2 1086 - dev: false 1087 - 1088 - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.4): 1089 - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} 1090 - engines: {node: '>=6.9.0'} 1091 - peerDependencies: 1092 - '@babel/core': ^7.0.0-0 1093 - dependencies: 1094 - '@babel/core': 7.21.4 1095 - '@babel/helper-plugin-utils': 7.20.2 1096 - dev: false 1097 - 1098 - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.4): 1099 - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} 1100 - engines: {node: '>=6.9.0'} 1101 - peerDependencies: 1102 - '@babel/core': ^7.0.0-0 1103 - dependencies: 1104 - '@babel/core': 7.21.4 1105 - '@babel/helper-plugin-utils': 7.20.2 1106 - '@babel/helper-replace-supers': 7.20.7 1107 - transitivePeerDependencies: 1108 - - supports-color 1109 - dev: false 1110 - 1111 - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.4): 1112 - resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} 1113 - engines: {node: '>=6.9.0'} 1114 - peerDependencies: 1115 - '@babel/core': ^7.0.0-0 1116 - dependencies: 1117 - '@babel/core': 7.21.4 1118 - '@babel/helper-plugin-utils': 7.20.2 1119 - dev: false 1120 - 1121 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.4): 1122 - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} 1123 - engines: {node: '>=6.9.0'} 1124 - peerDependencies: 1125 - '@babel/core': ^7.0.0-0 1126 - dependencies: 1127 - '@babel/core': 7.21.4 1128 - '@babel/helper-plugin-utils': 7.20.2 1129 - dev: false 1130 - 1131 - /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.21.4): 1132 - resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==} 1133 - engines: {node: '>=6.9.0'} 1134 - peerDependencies: 1135 - '@babel/core': ^7.0.0-0 1136 - dependencies: 1137 - '@babel/core': 7.21.4 1138 - '@babel/helper-plugin-utils': 7.20.2 1139 - dev: false 1140 - 1141 - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.4): 1142 - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} 1143 - engines: {node: '>=6.9.0'} 1144 - peerDependencies: 1145 - '@babel/core': ^7.0.0-0 1146 - dependencies: 1147 - '@babel/core': 7.21.4 1148 - '@babel/helper-plugin-utils': 7.20.2 1149 - dev: false 1150 - 1151 - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.4): 1152 - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} 1153 - engines: {node: '>=6.9.0'} 1154 - peerDependencies: 1155 - '@babel/core': ^7.0.0-0 1156 - dependencies: 1157 - '@babel/core': 7.21.4 1158 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.4) 1159 - dev: false 1160 - 1161 - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.4): 1162 - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} 1163 - engines: {node: '>=6.9.0'} 1164 - peerDependencies: 1165 - '@babel/core': ^7.0.0-0 1166 - dependencies: 1167 - '@babel/core': 7.21.4 1168 - '@babel/helper-annotate-as-pure': 7.18.6 1169 - '@babel/helper-module-imports': 7.21.4 1170 - '@babel/helper-plugin-utils': 7.20.2 1171 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4) 1172 - '@babel/types': 7.21.4 1173 - dev: false 1174 - 1175 - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.4): 1176 - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} 1177 - engines: {node: '>=6.9.0'} 1178 - peerDependencies: 1179 - '@babel/core': ^7.0.0-0 1180 - dependencies: 1181 - '@babel/core': 7.21.4 1182 - '@babel/helper-annotate-as-pure': 7.18.6 1183 - '@babel/helper-plugin-utils': 7.20.2 1184 - dev: false 1185 - 1186 - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.4): 1187 - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} 1188 - engines: {node: '>=6.9.0'} 1189 - peerDependencies: 1190 - '@babel/core': ^7.0.0-0 1191 - dependencies: 1192 - '@babel/core': 7.21.4 1193 - '@babel/helper-plugin-utils': 7.20.2 1194 - regenerator-transform: 0.15.1 1195 - dev: false 1196 - 1197 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.4): 1198 - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} 1199 - engines: {node: '>=6.9.0'} 1200 - peerDependencies: 1201 - '@babel/core': ^7.0.0-0 1202 - dependencies: 1203 - '@babel/core': 7.21.4 1204 - '@babel/helper-plugin-utils': 7.20.2 1205 - dev: false 1206 - 1207 - /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.21.4): 1208 - resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} 1209 - engines: {node: '>=6.9.0'} 1210 - peerDependencies: 1211 - '@babel/core': ^7.0.0-0 1212 - dependencies: 1213 - '@babel/core': 7.21.4 1214 - '@babel/helper-module-imports': 7.21.4 1215 - '@babel/helper-plugin-utils': 7.20.2 1216 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4) 1217 - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4) 1218 - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4) 1219 - semver: 6.3.0 1220 - transitivePeerDependencies: 1221 - - supports-color 1222 - dev: false 1223 - 1224 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.4): 1225 - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} 1226 - engines: {node: '>=6.9.0'} 1227 - peerDependencies: 1228 - '@babel/core': ^7.0.0-0 1229 - dependencies: 1230 - '@babel/core': 7.21.4 1231 - '@babel/helper-plugin-utils': 7.20.2 1232 - dev: false 1233 - 1234 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.4): 1235 - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} 1236 - engines: {node: '>=6.9.0'} 1237 - peerDependencies: 1238 - '@babel/core': ^7.0.0-0 1239 - dependencies: 1240 - '@babel/core': 7.21.4 1241 - '@babel/helper-plugin-utils': 7.20.2 1242 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 1243 - dev: false 1244 - 1245 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.4): 1246 - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} 1247 - engines: {node: '>=6.9.0'} 1248 - peerDependencies: 1249 - '@babel/core': ^7.0.0-0 1250 - dependencies: 1251 - '@babel/core': 7.21.4 1252 - '@babel/helper-plugin-utils': 7.20.2 1253 - dev: false 1254 - 1255 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.4): 1256 - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} 1257 - engines: {node: '>=6.9.0'} 1258 - peerDependencies: 1259 - '@babel/core': ^7.0.0-0 1260 - dependencies: 1261 - '@babel/core': 7.21.4 1262 - '@babel/helper-plugin-utils': 7.20.2 1263 - dev: false 108 + /@esbuild/android-arm64@0.17.17: 109 + resolution: {integrity: sha512-jaJ5IlmaDLFPNttv0ofcwy/cfeY4bh/n705Tgh+eLObbGtQBK3EPAu+CzL95JVE4nFAliyrnEu0d32Q5foavqg==} 110 + engines: {node: '>=12'} 111 + cpu: [arm64] 112 + os: [android] 113 + requiresBuild: true 114 + dev: true 115 + optional: true 1264 116 1265 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.4): 1266 - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} 1267 - engines: {node: '>=6.9.0'} 1268 - peerDependencies: 1269 - '@babel/core': ^7.0.0-0 1270 - dependencies: 1271 - '@babel/core': 7.21.4 1272 - '@babel/helper-plugin-utils': 7.20.2 1273 - dev: false 117 + /@esbuild/android-arm@0.17.17: 118 + resolution: {integrity: sha512-E6VAZwN7diCa3labs0GYvhEPL2M94WLF8A+czO8hfjREXxba8Ng7nM5VxV+9ihNXIY1iQO1XxUU4P7hbqbICxg==} 119 + engines: {node: '>=12'} 120 + cpu: [arm] 121 + os: [android] 122 + requiresBuild: true 123 + dev: true 124 + optional: true 1274 125 1275 - /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4): 1276 - resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} 1277 - engines: {node: '>=6.9.0'} 1278 - peerDependencies: 1279 - '@babel/core': ^7.0.0-0 1280 - dependencies: 1281 - '@babel/core': 7.21.4 1282 - '@babel/helper-annotate-as-pure': 7.18.6 1283 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.21.4) 1284 - '@babel/helper-plugin-utils': 7.20.2 1285 - '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) 1286 - transitivePeerDependencies: 1287 - - supports-color 1288 - dev: false 126 + /@esbuild/android-x64@0.17.17: 127 + resolution: {integrity: sha512-446zpfJ3nioMC7ASvJB1pszHVskkw4u/9Eu8s5yvvsSDTzYh4p4ZIRj0DznSl3FBF0Z/mZfrKXTtt0QCoFmoHA==} 128 + engines: {node: '>=12'} 129 + cpu: [x64] 130 + os: [android] 131 + requiresBuild: true 132 + dev: true 133 + optional: true 1289 134 1290 - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.4): 1291 - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} 1292 - engines: {node: '>=6.9.0'} 1293 - peerDependencies: 1294 - '@babel/core': ^7.0.0-0 1295 - dependencies: 1296 - '@babel/core': 7.21.4 1297 - '@babel/helper-plugin-utils': 7.20.2 1298 - dev: false 135 + /@esbuild/darwin-arm64@0.17.17: 136 + resolution: {integrity: sha512-m/gwyiBwH3jqfUabtq3GH31otL/0sE0l34XKpSIqR7NjQ/XHQ3lpmQHLHbG8AHTGCw8Ao059GvV08MS0bhFIJQ==} 137 + engines: {node: '>=12'} 138 + cpu: [arm64] 139 + os: [darwin] 140 + requiresBuild: true 141 + dev: true 142 + optional: true 1299 143 1300 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.4): 1301 - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} 1302 - engines: {node: '>=6.9.0'} 1303 - peerDependencies: 1304 - '@babel/core': ^7.0.0-0 1305 - dependencies: 1306 - '@babel/core': 7.21.4 1307 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.21.4) 1308 - '@babel/helper-plugin-utils': 7.20.2 1309 - dev: false 144 + /@esbuild/darwin-x64@0.17.17: 145 + resolution: {integrity: sha512-4utIrsX9IykrqYaXR8ob9Ha2hAY2qLc6ohJ8c0CN1DR8yWeMrTgYFjgdeQ9LIoTOfLetXjuCu5TRPHT9yKYJVg==} 146 + engines: {node: '>=12'} 147 + cpu: [x64] 148 + os: [darwin] 149 + requiresBuild: true 150 + dev: true 151 + optional: true 1310 152 1311 - /@babel/preset-env@7.21.4(@babel/core@7.21.4): 1312 - resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==} 1313 - engines: {node: '>=6.9.0'} 1314 - peerDependencies: 1315 - '@babel/core': ^7.0.0-0 1316 - dependencies: 1317 - '@babel/compat-data': 7.21.4 1318 - '@babel/core': 7.21.4 1319 - '@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4) 1320 - '@babel/helper-plugin-utils': 7.20.2 1321 - '@babel/helper-validator-option': 7.21.0 1322 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.4) 1323 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.4) 1324 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.4) 1325 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4) 1326 - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.4) 1327 - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.4) 1328 - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.4) 1329 - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.4) 1330 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.4) 1331 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.4) 1332 - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.4) 1333 - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.4) 1334 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.4) 1335 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4) 1336 - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.4) 1337 - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.4) 1338 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4) 1339 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) 1340 - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4) 1341 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4) 1342 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4) 1343 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4) 1344 - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.4) 1345 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) 1346 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) 1347 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) 1348 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) 1349 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) 1350 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) 1351 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) 1352 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4) 1353 - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4) 1354 - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.4) 1355 - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.4) 1356 - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.4) 1357 - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.4) 1358 - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.4) 1359 - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.4) 1360 - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.4) 1361 - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4) 1362 - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.4) 1363 - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.4) 1364 - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.4) 1365 - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.4) 1366 - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.4) 1367 - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.4) 1368 - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.4) 1369 - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4) 1370 - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.4) 1371 - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.4) 1372 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.4) 1373 - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.4) 1374 - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.4) 1375 - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.4) 1376 - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.4) 1377 - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.4) 1378 - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.4) 1379 - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.4) 1380 - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.4) 1381 - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.4) 1382 - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.4) 1383 - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.4) 1384 - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.4) 1385 - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.4) 1386 - '@babel/preset-modules': 0.1.5(@babel/core@7.21.4) 1387 - '@babel/types': 7.21.4 1388 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4) 1389 - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4) 1390 - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4) 1391 - core-js-compat: 3.30.1 1392 - semver: 6.3.0 1393 - transitivePeerDependencies: 1394 - - supports-color 1395 - dev: false 153 + /@esbuild/freebsd-arm64@0.17.17: 154 + resolution: {integrity: sha512-4PxjQII/9ppOrpEwzQ1b0pXCsFLqy77i0GaHodrmzH9zq2/NEhHMAMJkJ635Ns4fyJPFOlHMz4AsklIyRqFZWA==} 155 + engines: {node: '>=12'} 156 + cpu: [arm64] 157 + os: [freebsd] 158 + requiresBuild: true 159 + dev: true 160 + optional: true 1396 161 1397 - /@babel/preset-modules@0.1.5(@babel/core@7.21.4): 1398 - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} 1399 - peerDependencies: 1400 - '@babel/core': ^7.0.0-0 1401 - dependencies: 1402 - '@babel/core': 7.21.4 1403 - '@babel/helper-plugin-utils': 7.20.2 1404 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4) 1405 - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.4) 1406 - '@babel/types': 7.21.4 1407 - esutils: 2.0.3 1408 - dev: false 162 + /@esbuild/freebsd-x64@0.17.17: 163 + resolution: {integrity: sha512-lQRS+4sW5S3P1sv0z2Ym807qMDfkmdhUYX30GRBURtLTrJOPDpoU0kI6pVz1hz3U0+YQ0tXGS9YWveQjUewAJw==} 164 + engines: {node: '>=12'} 165 + cpu: [x64] 166 + os: [freebsd] 167 + requiresBuild: true 168 + dev: true 169 + optional: true 1409 170 1410 - /@babel/preset-react@7.18.6(@babel/core@7.21.4): 1411 - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} 1412 - engines: {node: '>=6.9.0'} 1413 - peerDependencies: 1414 - '@babel/core': ^7.0.0-0 1415 - dependencies: 1416 - '@babel/core': 7.21.4 1417 - '@babel/helper-plugin-utils': 7.20.2 1418 - '@babel/helper-validator-option': 7.21.0 1419 - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.4) 1420 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.4) 1421 - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.4) 1422 - '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.4) 1423 - dev: false 171 + /@esbuild/linux-arm64@0.17.17: 172 + resolution: {integrity: sha512-2+pwLx0whKY1/Vqt8lyzStyda1v0qjJ5INWIe+d8+1onqQxHLLi3yr5bAa4gvbzhZqBztifYEu8hh1La5+7sUw==} 173 + engines: {node: '>=12'} 174 + cpu: [arm64] 175 + os: [linux] 176 + requiresBuild: true 177 + dev: true 178 + optional: true 1424 179 1425 - /@babel/preset-typescript@7.21.4(@babel/core@7.21.4): 1426 - resolution: {integrity: sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==} 1427 - engines: {node: '>=6.9.0'} 1428 - peerDependencies: 1429 - '@babel/core': ^7.0.0-0 1430 - dependencies: 1431 - '@babel/core': 7.21.4 1432 - '@babel/helper-plugin-utils': 7.20.2 1433 - '@babel/helper-validator-option': 7.21.0 1434 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.4) 1435 - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4) 1436 - '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.4) 1437 - transitivePeerDependencies: 1438 - - supports-color 1439 - dev: false 180 + /@esbuild/linux-arm@0.17.17: 181 + resolution: {integrity: sha512-biDs7bjGdOdcmIk6xU426VgdRUpGg39Yz6sT9Xp23aq+IEHDb/u5cbmu/pAANpDB4rZpY/2USPhCA+w9t3roQg==} 182 + engines: {node: '>=12'} 183 + cpu: [arm] 184 + os: [linux] 185 + requiresBuild: true 186 + dev: true 187 + optional: true 1440 188 1441 - /@babel/regjsgen@0.8.0: 1442 - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} 1443 - dev: false 189 + /@esbuild/linux-ia32@0.17.17: 190 + resolution: {integrity: sha512-IBTTv8X60dYo6P2t23sSUYym8fGfMAiuv7PzJ+0LcdAndZRzvke+wTVxJeCq4WgjppkOpndL04gMZIFvwoU34Q==} 191 + engines: {node: '>=12'} 192 + cpu: [ia32] 193 + os: [linux] 194 + requiresBuild: true 195 + dev: true 196 + optional: true 1444 197 1445 - /@babel/runtime@7.21.0: 1446 - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} 1447 - engines: {node: '>=6.9.0'} 1448 - dependencies: 1449 - regenerator-runtime: 0.13.11 1450 - dev: false 198 + /@esbuild/linux-loong64@0.17.17: 199 + resolution: {integrity: sha512-WVMBtcDpATjaGfWfp6u9dANIqmU9r37SY8wgAivuKmgKHE+bWSuv0qXEFt/p3qXQYxJIGXQQv6hHcm7iWhWjiw==} 200 + engines: {node: '>=12'} 201 + cpu: [loong64] 202 + os: [linux] 203 + requiresBuild: true 204 + dev: true 205 + optional: true 1451 206 1452 - /@babel/template@7.20.7: 1453 - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} 1454 - engines: {node: '>=6.9.0'} 1455 - dependencies: 1456 - '@babel/code-frame': 7.21.4 1457 - '@babel/parser': 7.21.4 1458 - '@babel/types': 7.21.4 1459 - dev: false 207 + /@esbuild/linux-mips64el@0.17.17: 208 + resolution: {integrity: sha512-2kYCGh8589ZYnY031FgMLy0kmE4VoGdvfJkxLdxP4HJvWNXpyLhjOvxVsYjYZ6awqY4bgLR9tpdYyStgZZhi2A==} 209 + engines: {node: '>=12'} 210 + cpu: [mips64el] 211 + os: [linux] 212 + requiresBuild: true 213 + dev: true 214 + optional: true 1460 215 1461 - /@babel/traverse@7.21.4: 1462 - resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} 1463 - engines: {node: '>=6.9.0'} 1464 - dependencies: 1465 - '@babel/code-frame': 7.21.4 1466 - '@babel/generator': 7.21.4 1467 - '@babel/helper-environment-visitor': 7.18.9 1468 - '@babel/helper-function-name': 7.21.0 1469 - '@babel/helper-hoist-variables': 7.18.6 1470 - '@babel/helper-split-export-declaration': 7.18.6 1471 - '@babel/parser': 7.21.4 1472 - '@babel/types': 7.21.4 1473 - debug: 4.3.4 1474 - globals: 11.12.0 1475 - transitivePeerDependencies: 1476 - - supports-color 1477 - dev: false 216 + /@esbuild/linux-ppc64@0.17.17: 217 + resolution: {integrity: sha512-KIdG5jdAEeAKogfyMTcszRxy3OPbZhq0PPsW4iKKcdlbk3YE4miKznxV2YOSmiK/hfOZ+lqHri3v8eecT2ATwQ==} 218 + engines: {node: '>=12'} 219 + cpu: [ppc64] 220 + os: [linux] 221 + requiresBuild: true 222 + dev: true 223 + optional: true 1478 224 1479 - /@babel/types@7.21.4: 1480 - resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==} 1481 - engines: {node: '>=6.9.0'} 1482 - dependencies: 1483 - '@babel/helper-string-parser': 7.19.4 1484 - '@babel/helper-validator-identifier': 7.19.1 1485 - to-fast-properties: 2.0.0 1486 - dev: false 225 + /@esbuild/linux-riscv64@0.17.17: 226 + resolution: {integrity: sha512-Cj6uWLBR5LWhcD/2Lkfg2NrkVsNb2sFM5aVEfumKB2vYetkA/9Uyc1jVoxLZ0a38sUhFk4JOVKH0aVdPbjZQeA==} 227 + engines: {node: '>=12'} 228 + cpu: [riscv64] 229 + os: [linux] 230 + requiresBuild: true 231 + dev: true 232 + optional: true 1487 233 1488 - /@bcoe/v8-coverage@0.2.3: 1489 - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} 1490 - dev: false 234 + /@esbuild/linux-s390x@0.17.17: 235 + resolution: {integrity: sha512-lK+SffWIr0XsFf7E0srBjhpkdFVJf3HEgXCwzkm69kNbRar8MhezFpkIwpk0qo2IOQL4JE4mJPJI8AbRPLbuOQ==} 236 + engines: {node: '>=12'} 237 + cpu: [s390x] 238 + os: [linux] 239 + requiresBuild: true 240 + dev: true 241 + optional: true 1491 242 1492 - /@csstools/normalize.css@12.0.0: 1493 - resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==} 1494 - dev: false 243 + /@esbuild/linux-x64@0.17.17: 244 + resolution: {integrity: sha512-XcSGTQcWFQS2jx3lZtQi7cQmDYLrpLRyz1Ns1DzZCtn898cWfm5Icx/DEWNcTU+T+tyPV89RQtDnI7qL2PObPg==} 245 + engines: {node: '>=12'} 246 + cpu: [x64] 247 + os: [linux] 248 + requiresBuild: true 249 + dev: true 250 + optional: true 1495 251 1496 - /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.23): 1497 - resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} 1498 - engines: {node: ^12 || ^14 || >=16} 1499 - peerDependencies: 1500 - postcss: ^8.2 1501 - dependencies: 1502 - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11) 1503 - postcss: 8.4.23 1504 - postcss-selector-parser: 6.0.11 1505 - dev: false 252 + /@esbuild/netbsd-x64@0.17.17: 253 + resolution: {integrity: sha512-RNLCDmLP5kCWAJR+ItLM3cHxzXRTe4N00TQyQiimq+lyqVqZWGPAvcyfUBM0isE79eEZhIuGN09rAz8EL5KdLA==} 254 + engines: {node: '>=12'} 255 + cpu: [x64] 256 + os: [netbsd] 257 + requiresBuild: true 258 + dev: true 259 + optional: true 1506 260 1507 - /@csstools/postcss-color-function@1.1.1(postcss@8.4.23): 1508 - resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} 1509 - engines: {node: ^12 || ^14 || >=16} 1510 - peerDependencies: 1511 - postcss: ^8.2 1512 - dependencies: 1513 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 1514 - postcss: 8.4.23 1515 - postcss-value-parser: 4.2.0 1516 - dev: false 261 + /@esbuild/openbsd-x64@0.17.17: 262 + resolution: {integrity: sha512-PAXswI5+cQq3Pann7FNdcpSUrhrql3wKjj3gVkmuz6OHhqqYxKvi6GgRBoaHjaG22HV/ZZEgF9TlS+9ftHVigA==} 263 + engines: {node: '>=12'} 264 + cpu: [x64] 265 + os: [openbsd] 266 + requiresBuild: true 267 + dev: true 268 + optional: true 1517 269 1518 - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.23): 1519 - resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} 1520 - engines: {node: ^12 || ^14 || >=16} 1521 - peerDependencies: 1522 - postcss: ^8.2 1523 - dependencies: 1524 - postcss: 8.4.23 1525 - postcss-value-parser: 4.2.0 1526 - dev: false 270 + /@esbuild/sunos-x64@0.17.17: 271 + resolution: {integrity: sha512-V63egsWKnx/4V0FMYkr9NXWrKTB5qFftKGKuZKFIrAkO/7EWLFnbBZNM1CvJ6Sis+XBdPws2YQSHF1Gqf1oj/Q==} 272 + engines: {node: '>=12'} 273 + cpu: [x64] 274 + os: [sunos] 275 + requiresBuild: true 276 + dev: true 277 + optional: true 1527 278 1528 - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.23): 1529 - resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} 1530 - engines: {node: ^12 || ^14 || >=16} 1531 - peerDependencies: 1532 - postcss: ^8.2 1533 - dependencies: 1534 - postcss: 8.4.23 1535 - postcss-value-parser: 4.2.0 1536 - dev: false 279 + /@esbuild/win32-arm64@0.17.17: 280 + resolution: {integrity: sha512-YtUXLdVnd6YBSYlZODjWzH+KzbaubV0YVd6UxSfoFfa5PtNJNaW+1i+Hcmjpg2nEe0YXUCNF5bkKy1NnBv1y7Q==} 281 + engines: {node: '>=12'} 282 + cpu: [arm64] 283 + os: [win32] 284 + requiresBuild: true 285 + dev: true 286 + optional: true 1537 287 1538 - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.23): 1539 - resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} 1540 - engines: {node: ^12 || ^14 || >=16} 1541 - peerDependencies: 1542 - postcss: ^8.2 1543 - dependencies: 1544 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 1545 - postcss: 8.4.23 1546 - postcss-value-parser: 4.2.0 1547 - dev: false 288 + /@esbuild/win32-ia32@0.17.17: 289 + resolution: {integrity: sha512-yczSLRbDdReCO74Yfc5tKG0izzm+lPMYyO1fFTcn0QNwnKmc3K+HdxZWLGKg4pZVte7XVgcFku7TIZNbWEJdeQ==} 290 + engines: {node: '>=12'} 291 + cpu: [ia32] 292 + os: [win32] 293 + requiresBuild: true 294 + dev: true 295 + optional: true 1548 296 1549 - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.23): 1550 - resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} 1551 - engines: {node: ^12 || ^14 || >=16} 1552 - peerDependencies: 1553 - postcss: ^8.2 1554 - dependencies: 1555 - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11) 1556 - postcss: 8.4.23 1557 - postcss-selector-parser: 6.0.11 1558 - dev: false 1559 - 1560 - /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.23): 1561 - resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} 1562 - engines: {node: ^12 || ^14 || >=16} 1563 - peerDependencies: 1564 - postcss: ^8.2 1565 - dependencies: 1566 - postcss: 8.4.23 1567 - postcss-value-parser: 4.2.0 1568 - dev: false 1569 - 1570 - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.23): 1571 - resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} 1572 - engines: {node: ^12 || ^14 || >=16} 1573 - peerDependencies: 1574 - postcss: ^8.2 1575 - dependencies: 1576 - postcss: 8.4.23 1577 - postcss-value-parser: 4.2.0 1578 - dev: false 1579 - 1580 - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.23): 1581 - resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} 1582 - engines: {node: ^12 || ^14 || >=16} 1583 - peerDependencies: 1584 - postcss: ^8.2 1585 - dependencies: 1586 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 1587 - postcss: 8.4.23 1588 - postcss-value-parser: 4.2.0 1589 - dev: false 1590 - 1591 - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.23): 1592 - resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} 1593 - engines: {node: ^12 || ^14 || >=16} 1594 - peerDependencies: 1595 - postcss: ^8.3 1596 - dependencies: 1597 - postcss: 8.4.23 1598 - postcss-value-parser: 4.2.0 1599 - dev: false 1600 - 1601 - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.23): 1602 - resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} 1603 - engines: {node: ^12 || ^14 || >=16} 1604 - peerDependencies: 1605 - postcss: ^8.2 1606 - dependencies: 1607 - postcss: 8.4.23 1608 - postcss-value-parser: 4.2.0 1609 - dev: false 1610 - 1611 - /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.23): 1612 - resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} 1613 - engines: {node: ^12 || ^14 || >=16} 1614 - peerDependencies: 1615 - postcss: ^8.2 1616 - dependencies: 1617 - postcss: 8.4.23 1618 - postcss-value-parser: 4.2.0 1619 - dev: false 1620 - 1621 - /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.23): 1622 - resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} 1623 - engines: {node: ^14 || >=16} 1624 - peerDependencies: 1625 - postcss: ^8.2 1626 - dependencies: 1627 - postcss: 8.4.23 1628 - postcss-value-parser: 4.2.0 1629 - dev: false 1630 - 1631 - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.23): 1632 - resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} 1633 - engines: {node: ^12 || ^14 || >=16} 1634 - peerDependencies: 1635 - postcss: ^8.2 1636 - dependencies: 1637 - postcss: 8.4.23 1638 - dev: false 1639 - 1640 - /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.11): 1641 - resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} 1642 - engines: {node: ^14 || ^16 || >=18} 1643 - peerDependencies: 1644 - postcss-selector-parser: ^6.0.10 1645 - dependencies: 1646 - postcss-selector-parser: 6.0.11 1647 - dev: false 297 + /@esbuild/win32-x64@0.17.17: 298 + resolution: {integrity: sha512-FNZw7H3aqhF9OyRQbDDnzUApDXfC1N6fgBhkqEO2jvYCJ+DxMTfZVqg3AX0R1khg1wHTBRD5SdcibSJ+XF6bFg==} 299 + engines: {node: '>=12'} 300 + cpu: [x64] 301 + os: [win32] 302 + requiresBuild: true 303 + dev: true 304 + optional: true 1648 305 1649 306 /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0): 1650 307 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} ··· 1654 311 dependencies: 1655 312 eslint: 8.38.0 1656 313 eslint-visitor-keys: 3.4.0 314 + dev: true 1657 315 1658 316 /@eslint-community/regexpp@4.5.0: 1659 317 resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} 1660 318 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 319 + dev: true 1661 320 1662 321 /@eslint/eslintrc@2.0.2: 1663 322 resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} ··· 1674 333 strip-json-comments: 3.1.1 1675 334 transitivePeerDependencies: 1676 335 - supports-color 336 + dev: true 1677 337 1678 338 /@eslint/js@8.38.0: 1679 339 resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} 1680 340 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 341 + dev: true 1681 342 1682 343 /@floating-ui/core@1.2.6: 1683 344 resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==} ··· 1698 359 minimatch: 3.1.2 1699 360 transitivePeerDependencies: 1700 361 - supports-color 362 + dev: true 1701 363 1702 364 /@humanwhocodes/module-importer@1.0.1: 1703 365 resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 1704 366 engines: {node: '>=12.22'} 367 + dev: true 1705 368 1706 369 /@humanwhocodes/object-schema@1.2.1: 1707 370 resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 1708 - 1709 - /@istanbuljs/load-nyc-config@1.1.0: 1710 - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} 1711 - engines: {node: '>=8'} 1712 - dependencies: 1713 - camelcase: 5.3.1 1714 - find-up: 4.1.0 1715 - get-package-type: 0.1.0 1716 - js-yaml: 3.14.1 1717 - resolve-from: 5.0.0 1718 - dev: false 1719 - 1720 - /@istanbuljs/schema@0.1.3: 1721 - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} 1722 - engines: {node: '>=8'} 1723 - dev: false 1724 - 1725 - /@jest/console@27.5.1: 1726 - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} 1727 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1728 - dependencies: 1729 - '@jest/types': 27.5.1 1730 - '@types/node': 18.15.13 1731 - chalk: 4.1.2 1732 - jest-message-util: 27.5.1 1733 - jest-util: 27.5.1 1734 - slash: 3.0.0 1735 - dev: false 1736 - 1737 - /@jest/console@28.1.3: 1738 - resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} 1739 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 1740 - dependencies: 1741 - '@jest/types': 28.1.3 1742 - '@types/node': 18.15.13 1743 - chalk: 4.1.2 1744 - jest-message-util: 28.1.3 1745 - jest-util: 28.1.3 1746 - slash: 3.0.0 1747 - dev: false 1748 - 1749 - /@jest/core@27.5.1: 1750 - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} 1751 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1752 - peerDependencies: 1753 - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 1754 - peerDependenciesMeta: 1755 - node-notifier: 1756 - optional: true 1757 - dependencies: 1758 - '@jest/console': 27.5.1 1759 - '@jest/reporters': 27.5.1 1760 - '@jest/test-result': 27.5.1 1761 - '@jest/transform': 27.5.1 1762 - '@jest/types': 27.5.1 1763 - '@types/node': 18.15.13 1764 - ansi-escapes: 4.3.2 1765 - chalk: 4.1.2 1766 - emittery: 0.8.1 1767 - exit: 0.1.2 1768 - graceful-fs: 4.2.11 1769 - jest-changed-files: 27.5.1 1770 - jest-config: 27.5.1 1771 - jest-haste-map: 27.5.1 1772 - jest-message-util: 27.5.1 1773 - jest-regex-util: 27.5.1 1774 - jest-resolve: 27.5.1 1775 - jest-resolve-dependencies: 27.5.1 1776 - jest-runner: 27.5.1 1777 - jest-runtime: 27.5.1 1778 - jest-snapshot: 27.5.1 1779 - jest-util: 27.5.1 1780 - jest-validate: 27.5.1 1781 - jest-watcher: 27.5.1 1782 - micromatch: 4.0.5 1783 - rimraf: 3.0.2 1784 - slash: 3.0.0 1785 - strip-ansi: 6.0.1 1786 - transitivePeerDependencies: 1787 - - bufferutil 1788 - - canvas 1789 - - supports-color 1790 - - ts-node 1791 - - utf-8-validate 1792 - dev: false 1793 - 1794 - /@jest/environment@27.5.1: 1795 - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} 1796 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1797 - dependencies: 1798 - '@jest/fake-timers': 27.5.1 1799 - '@jest/types': 27.5.1 1800 - '@types/node': 18.15.13 1801 - jest-mock: 27.5.1 1802 - dev: false 1803 - 1804 - /@jest/fake-timers@27.5.1: 1805 - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} 1806 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1807 - dependencies: 1808 - '@jest/types': 27.5.1 1809 - '@sinonjs/fake-timers': 8.1.0 1810 - '@types/node': 18.15.13 1811 - jest-message-util: 27.5.1 1812 - jest-mock: 27.5.1 1813 - jest-util: 27.5.1 1814 - dev: false 1815 - 1816 - /@jest/globals@27.5.1: 1817 - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} 1818 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1819 - dependencies: 1820 - '@jest/environment': 27.5.1 1821 - '@jest/types': 27.5.1 1822 - expect: 27.5.1 1823 - dev: false 1824 - 1825 - /@jest/reporters@27.5.1: 1826 - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} 1827 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1828 - peerDependencies: 1829 - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 1830 - peerDependenciesMeta: 1831 - node-notifier: 1832 - optional: true 1833 - dependencies: 1834 - '@bcoe/v8-coverage': 0.2.3 1835 - '@jest/console': 27.5.1 1836 - '@jest/test-result': 27.5.1 1837 - '@jest/transform': 27.5.1 1838 - '@jest/types': 27.5.1 1839 - '@types/node': 18.15.13 1840 - chalk: 4.1.2 1841 - collect-v8-coverage: 1.0.1 1842 - exit: 0.1.2 1843 - glob: 7.2.3 1844 - graceful-fs: 4.2.11 1845 - istanbul-lib-coverage: 3.2.0 1846 - istanbul-lib-instrument: 5.2.1 1847 - istanbul-lib-report: 3.0.0 1848 - istanbul-lib-source-maps: 4.0.1 1849 - istanbul-reports: 3.1.5 1850 - jest-haste-map: 27.5.1 1851 - jest-resolve: 27.5.1 1852 - jest-util: 27.5.1 1853 - jest-worker: 27.5.1 1854 - slash: 3.0.0 1855 - source-map: 0.6.1 1856 - string-length: 4.0.2 1857 - terminal-link: 2.1.1 1858 - v8-to-istanbul: 8.1.1 1859 - transitivePeerDependencies: 1860 - - supports-color 1861 - dev: false 1862 - 1863 - /@jest/schemas@28.1.3: 1864 - resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} 1865 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 1866 - dependencies: 1867 - '@sinclair/typebox': 0.24.51 1868 - dev: false 1869 - 1870 - /@jest/source-map@27.5.1: 1871 - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} 1872 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1873 - dependencies: 1874 - callsites: 3.1.0 1875 - graceful-fs: 4.2.11 1876 - source-map: 0.6.1 1877 - dev: false 1878 - 1879 - /@jest/test-result@27.5.1: 1880 - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} 1881 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1882 - dependencies: 1883 - '@jest/console': 27.5.1 1884 - '@jest/types': 27.5.1 1885 - '@types/istanbul-lib-coverage': 2.0.4 1886 - collect-v8-coverage: 1.0.1 1887 - dev: false 1888 - 1889 - /@jest/test-result@28.1.3: 1890 - resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} 1891 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 1892 - dependencies: 1893 - '@jest/console': 28.1.3 1894 - '@jest/types': 28.1.3 1895 - '@types/istanbul-lib-coverage': 2.0.4 1896 - collect-v8-coverage: 1.0.1 1897 - dev: false 1898 - 1899 - /@jest/test-sequencer@27.5.1: 1900 - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} 1901 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1902 - dependencies: 1903 - '@jest/test-result': 27.5.1 1904 - graceful-fs: 4.2.11 1905 - jest-haste-map: 27.5.1 1906 - jest-runtime: 27.5.1 1907 - transitivePeerDependencies: 1908 - - supports-color 1909 - dev: false 1910 - 1911 - /@jest/transform@27.5.1: 1912 - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} 1913 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1914 - dependencies: 1915 - '@babel/core': 7.21.4 1916 - '@jest/types': 27.5.1 1917 - babel-plugin-istanbul: 6.1.1 1918 - chalk: 4.1.2 1919 - convert-source-map: 1.9.0 1920 - fast-json-stable-stringify: 2.1.0 1921 - graceful-fs: 4.2.11 1922 - jest-haste-map: 27.5.1 1923 - jest-regex-util: 27.5.1 1924 - jest-util: 27.5.1 1925 - micromatch: 4.0.5 1926 - pirates: 4.0.5 1927 - slash: 3.0.0 1928 - source-map: 0.6.1 1929 - write-file-atomic: 3.0.3 1930 - transitivePeerDependencies: 1931 - - supports-color 1932 - dev: false 1933 - 1934 - /@jest/types@27.5.1: 1935 - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} 1936 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1937 - dependencies: 1938 - '@types/istanbul-lib-coverage': 2.0.4 1939 - '@types/istanbul-reports': 3.0.1 1940 - '@types/node': 18.15.13 1941 - '@types/yargs': 16.0.5 1942 - chalk: 4.1.2 1943 - dev: false 1944 - 1945 - /@jest/types@28.1.3: 1946 - resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} 1947 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 1948 - dependencies: 1949 - '@jest/schemas': 28.1.3 1950 - '@types/istanbul-lib-coverage': 2.0.4 1951 - '@types/istanbul-reports': 3.0.1 1952 - '@types/node': 18.15.13 1953 - '@types/yargs': 17.0.24 1954 - chalk: 4.1.2 1955 - dev: false 1956 - 1957 - /@jridgewell/gen-mapping@0.3.3: 1958 - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 1959 - engines: {node: '>=6.0.0'} 1960 - dependencies: 1961 - '@jridgewell/set-array': 1.1.2 1962 - '@jridgewell/sourcemap-codec': 1.4.15 1963 - '@jridgewell/trace-mapping': 0.3.18 1964 - dev: false 1965 - 1966 - /@jridgewell/resolve-uri@3.1.0: 1967 - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 1968 - engines: {node: '>=6.0.0'} 1969 - dev: false 1970 - 1971 - /@jridgewell/set-array@1.1.2: 1972 - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 1973 - engines: {node: '>=6.0.0'} 1974 - dev: false 1975 - 1976 - /@jridgewell/source-map@0.3.3: 1977 - resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} 1978 - dependencies: 1979 - '@jridgewell/gen-mapping': 0.3.3 1980 - '@jridgewell/trace-mapping': 0.3.18 1981 - dev: false 1982 - 1983 - /@jridgewell/sourcemap-codec@1.4.14: 1984 - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 1985 - dev: false 1986 - 1987 - /@jridgewell/sourcemap-codec@1.4.15: 1988 - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 1989 - dev: false 1990 - 1991 - /@jridgewell/trace-mapping@0.3.18: 1992 - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} 1993 - dependencies: 1994 - '@jridgewell/resolve-uri': 3.1.0 1995 - '@jridgewell/sourcemap-codec': 1.4.14 1996 - dev: false 1997 - 1998 - /@leichtgewicht/ip-codec@2.0.4: 1999 - resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} 2000 - dev: false 2001 - 2002 - /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: 2003 - resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} 2004 - dependencies: 2005 - eslint-scope: 5.1.1 2006 - dev: false 371 + dev: true 2007 372 2008 373 /@nodelib/fs.scandir@2.1.5: 2009 374 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} ··· 2011 376 dependencies: 2012 377 '@nodelib/fs.stat': 2.0.5 2013 378 run-parallel: 1.2.0 379 + dev: true 2014 380 2015 381 /@nodelib/fs.stat@2.0.5: 2016 382 resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 2017 383 engines: {node: '>= 8'} 384 + dev: true 2018 385 2019 386 /@nodelib/fs.walk@1.2.8: 2020 387 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} ··· 2022 389 dependencies: 2023 390 '@nodelib/fs.scandir': 2.1.5 2024 391 fastq: 1.15.0 392 + dev: true 2025 393 2026 - /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.13.3)(webpack@5.80.0): 2027 - resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} 2028 - engines: {node: '>= 10.13'} 2029 - peerDependencies: 2030 - '@types/webpack': 4.x || 5.x 2031 - react-refresh: '>=0.10.0 <1.0.0' 2032 - sockjs-client: ^1.4.0 2033 - type-fest: '>=0.17.0 <4.0.0' 2034 - webpack: '>=4.43.0 <6.0.0' 2035 - webpack-dev-server: 3.x || 4.x 2036 - webpack-hot-middleware: 2.x 2037 - webpack-plugin-serve: 0.x || 1.x 2038 - peerDependenciesMeta: 2039 - '@types/webpack': 2040 - optional: true 2041 - sockjs-client: 2042 - optional: true 2043 - type-fest: 2044 - optional: true 2045 - webpack-dev-server: 2046 - optional: true 2047 - webpack-hot-middleware: 2048 - optional: true 2049 - webpack-plugin-serve: 2050 - optional: true 2051 - dependencies: 2052 - ansi-html-community: 0.0.8 2053 - common-path-prefix: 3.0.0 2054 - core-js-pure: 3.30.1 2055 - error-stack-parser: 2.1.4 2056 - find-up: 5.0.0 2057 - html-entities: 2.3.3 2058 - loader-utils: 2.0.4 2059 - react-refresh: 0.11.0 2060 - schema-utils: 3.1.2 2061 - source-map: 0.7.4 2062 - webpack: 5.80.0 2063 - webpack-dev-server: 4.13.3(webpack@5.80.0) 2064 - dev: false 2065 - 2066 - /@rollup/plugin-babel@5.3.1(@babel/core@7.21.4)(rollup@2.79.1): 2067 - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} 2068 - engines: {node: '>= 10.0.0'} 2069 - peerDependencies: 2070 - '@babel/core': ^7.0.0 2071 - '@types/babel__core': ^7.1.9 2072 - rollup: ^1.20.0||^2.0.0 2073 - peerDependenciesMeta: 2074 - '@types/babel__core': 2075 - optional: true 2076 - dependencies: 2077 - '@babel/core': 7.21.4 2078 - '@babel/helper-module-imports': 7.21.4 2079 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) 2080 - rollup: 2.79.1 2081 - dev: false 2082 - 2083 - /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1): 2084 - resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} 2085 - engines: {node: '>= 10.0.0'} 2086 - peerDependencies: 2087 - rollup: ^1.20.0||^2.0.0 2088 - dependencies: 2089 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) 2090 - '@types/resolve': 1.17.1 2091 - builtin-modules: 3.3.0 2092 - deepmerge: 4.3.1 2093 - is-module: 1.0.0 2094 - resolve: 1.22.2 2095 - rollup: 2.79.1 2096 - dev: false 2097 - 2098 - /@rollup/plugin-replace@2.4.2(rollup@2.79.1): 2099 - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} 2100 - peerDependencies: 2101 - rollup: ^1.20.0 || ^2.0.0 2102 - dependencies: 2103 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) 2104 - magic-string: 0.25.9 2105 - rollup: 2.79.1 2106 - dev: false 2107 - 2108 - /@rollup/pluginutils@3.1.0(rollup@2.79.1): 2109 - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} 2110 - engines: {node: '>= 8.0.0'} 2111 - peerDependencies: 2112 - rollup: ^1.20.0||^2.0.0 2113 - dependencies: 2114 - '@types/estree': 0.0.39 2115 - estree-walker: 1.0.1 2116 - picomatch: 2.3.1 2117 - rollup: 2.79.1 2118 - dev: false 2119 - 2120 - /@rushstack/eslint-patch@1.2.0: 2121 - resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} 2122 - dev: false 2123 - 2124 - /@sinclair/typebox@0.24.51: 2125 - resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} 2126 - dev: false 2127 - 2128 - /@sinonjs/commons@1.8.6: 2129 - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} 2130 - dependencies: 2131 - type-detect: 4.0.8 2132 - dev: false 2133 - 2134 - /@sinonjs/fake-timers@8.1.0: 2135 - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} 2136 - dependencies: 2137 - '@sinonjs/commons': 1.8.6 2138 - dev: false 2139 - 2140 - /@surma/rollup-plugin-off-main-thread@2.2.3: 2141 - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} 2142 - dependencies: 2143 - ejs: 3.1.9 2144 - json5: 2.2.3 2145 - magic-string: 0.25.9 2146 - string.prototype.matchall: 4.0.8 2147 - dev: false 2148 - 2149 - /@svgr/babel-plugin-add-jsx-attribute@5.4.0: 2150 - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} 394 + /@swc/core-darwin-arm64@1.3.53: 395 + resolution: {integrity: sha512-JvWwV/duzdQ60iwWYceDhDk75LmdrLoPC7myX3Src3gl/bJtETMq7uHS9uY8m0GQOqbct7XGR3q5Ff21YxkSzg==} 2151 396 engines: {node: '>=10'} 2152 - dev: false 397 + cpu: [arm64] 398 + os: [darwin] 399 + requiresBuild: true 400 + dev: true 401 + optional: true 2153 402 2154 - /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: 2155 - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} 403 + /@swc/core-darwin-x64@1.3.53: 404 + resolution: {integrity: sha512-UuIGZtCfUPJM2Q01bRIFzmucOMg8UZ+mY3kh5xB8kl/VrLltBlraSWGjjJzYmUeUxiF8+CtMfeSYav5QfU2v3g==} 2156 405 engines: {node: '>=10'} 2157 - dev: false 406 + cpu: [x64] 407 + os: [darwin] 408 + requiresBuild: true 409 + dev: true 410 + optional: true 2158 411 2159 - /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: 2160 - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} 412 + /@swc/core-linux-arm-gnueabihf@1.3.53: 413 + resolution: {integrity: sha512-LupAjTErteyLmowYIfiQeTz3uVh7/SPYv/EuG1PYrajNoUYomt7WA0rQUoyglF9VtwVyNqxptWEO5So32ApTHA==} 2161 414 engines: {node: '>=10'} 2162 - dev: false 415 + cpu: [arm] 416 + os: [linux] 417 + requiresBuild: true 418 + dev: true 419 + optional: true 2163 420 2164 - /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: 2165 - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} 421 + /@swc/core-linux-arm64-gnu@1.3.53: 422 + resolution: {integrity: sha512-kREfZdiJH/O8GtJJ22wVN9DVzz/+CPAkw5Mn5te2KQg0xJHMWaESU5XeYMWvtwyOQVmb31b6zCGFy3pnBWWfGw==} 2166 423 engines: {node: '>=10'} 2167 - dev: false 424 + cpu: [arm64] 425 + os: [linux] 426 + requiresBuild: true 427 + dev: true 428 + optional: true 2168 429 2169 - /@svgr/babel-plugin-svg-dynamic-title@5.4.0: 2170 - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} 430 + /@swc/core-linux-arm64-musl@1.3.53: 431 + resolution: {integrity: sha512-VeAgomBr6BVuBRjZjRHmvp5gKp1nZgbbd441ca1AvsPd2c+ZyhyHLxTWeHOzBDa/vYnmi9BCwx3QJzFqbAFPVw==} 2171 432 engines: {node: '>=10'} 2172 - dev: false 433 + cpu: [arm64] 434 + os: [linux] 435 + requiresBuild: true 436 + dev: true 437 + optional: true 2173 438 2174 - /@svgr/babel-plugin-svg-em-dimensions@5.4.0: 2175 - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} 439 + /@swc/core-linux-x64-gnu@1.3.53: 440 + resolution: {integrity: sha512-LFX5+QpQkESPkmx860C40pIiYf1utEqoA+WDtmKnUz3DucYvw3eGlXCBdyklP7UBWwJktKIcPlIqr7yROY5VlQ==} 2176 441 engines: {node: '>=10'} 2177 - dev: false 442 + cpu: [x64] 443 + os: [linux] 444 + requiresBuild: true 445 + dev: true 446 + optional: true 2178 447 2179 - /@svgr/babel-plugin-transform-react-native-svg@5.4.0: 2180 - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} 448 + /@swc/core-linux-x64-musl@1.3.53: 449 + resolution: {integrity: sha512-O0lbJgeaM0VEsG8wFYvpF+Iuf0IENv+LnXHoygkAsv67sVW54+gFxav2sEdkftD5qYe9ku4tmtTVYRZlFgC84Q==} 2181 450 engines: {node: '>=10'} 2182 - dev: false 2183 - 2184 - /@svgr/babel-plugin-transform-svg-component@5.5.0: 2185 - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} 2186 - engines: {node: '>=10'} 2187 - dev: false 451 + cpu: [x64] 452 + os: [linux] 453 + requiresBuild: true 454 + dev: true 455 + optional: true 2188 456 2189 - /@svgr/babel-preset@5.5.0: 2190 - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} 2191 - engines: {node: '>=10'} 2192 - dependencies: 2193 - '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 2194 - '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 2195 - '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 2196 - '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 2197 - '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 2198 - '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 2199 - '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 2200 - '@svgr/babel-plugin-transform-svg-component': 5.5.0 2201 - dev: false 2202 - 2203 - /@svgr/core@5.5.0: 2204 - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} 2205 - engines: {node: '>=10'} 2206 - dependencies: 2207 - '@svgr/plugin-jsx': 5.5.0 2208 - camelcase: 6.3.0 2209 - cosmiconfig: 7.1.0 2210 - transitivePeerDependencies: 2211 - - supports-color 2212 - dev: false 2213 - 2214 - /@svgr/hast-util-to-babel-ast@5.5.0: 2215 - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} 457 + /@swc/core-win32-arm64-msvc@1.3.53: 458 + resolution: {integrity: sha512-7PgvPl0aNLaFZSK+rIi4DB1g0aW2qOsTIJQSJGRszsCP8pze/traXymyuSG2I3y9Hx7Z+bP5ycJydyAgCw88WA==} 2216 459 engines: {node: '>=10'} 2217 - dependencies: 2218 - '@babel/types': 7.21.4 2219 - dev: false 460 + cpu: [arm64] 461 + os: [win32] 462 + requiresBuild: true 463 + dev: true 464 + optional: true 2220 465 2221 - /@svgr/plugin-jsx@5.5.0: 2222 - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} 466 + /@swc/core-win32-ia32-msvc@1.3.53: 467 + resolution: {integrity: sha512-T+OacGm69t8+1mt1sHlwhREiFiFgSeIGL3h11FIs8o2zKnOr5z2H9myzR432X8WuHGVQAOCMvDu53LCMBD0ZzQ==} 2223 468 engines: {node: '>=10'} 2224 - dependencies: 2225 - '@babel/core': 7.21.4 2226 - '@svgr/babel-preset': 5.5.0 2227 - '@svgr/hast-util-to-babel-ast': 5.5.0 2228 - svg-parser: 2.0.4 2229 - transitivePeerDependencies: 2230 - - supports-color 2231 - dev: false 469 + cpu: [ia32] 470 + os: [win32] 471 + requiresBuild: true 472 + dev: true 473 + optional: true 2232 474 2233 - /@svgr/plugin-svgo@5.5.0: 2234 - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} 475 + /@swc/core-win32-x64-msvc@1.3.53: 476 + resolution: {integrity: sha512-uV1/GhROJ/SXzj+f+kKcVtR2GuAiggvbqepzZS46+G47okf6229hr2T1fjmiwYyA75w9R3Bj/wil4UhodohOLg==} 2235 477 engines: {node: '>=10'} 2236 - dependencies: 2237 - cosmiconfig: 7.1.0 2238 - deepmerge: 4.3.1 2239 - svgo: 1.3.2 2240 - dev: false 478 + cpu: [x64] 479 + os: [win32] 480 + requiresBuild: true 481 + dev: true 482 + optional: true 2241 483 2242 - /@svgr/webpack@5.5.0: 2243 - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} 484 + /@swc/core@1.3.53: 485 + resolution: {integrity: sha512-OM5nCfKDZXr1HjxD072Jlx5463tPX7xeY7NDSRE3X4KFlkRDFdyMWAyV3pet1oouOfUNrzzoVTAR4XSU8ytO6Q==} 2244 486 engines: {node: '>=10'} 2245 - dependencies: 2246 - '@babel/core': 7.21.4 2247 - '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.21.4) 2248 - '@babel/preset-env': 7.21.4(@babel/core@7.21.4) 2249 - '@babel/preset-react': 7.18.6(@babel/core@7.21.4) 2250 - '@svgr/core': 5.5.0 2251 - '@svgr/plugin-jsx': 5.5.0 2252 - '@svgr/plugin-svgo': 5.5.0 2253 - loader-utils: 2.0.4 2254 - transitivePeerDependencies: 2255 - - supports-color 2256 - dev: false 2257 - 2258 - /@tootallnate/once@1.1.2: 2259 - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} 2260 - engines: {node: '>= 6'} 2261 - dev: false 2262 - 2263 - /@trysound/sax@0.2.0: 2264 - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} 2265 - engines: {node: '>=10.13.0'} 2266 - dev: false 2267 - 2268 - /@types/babel__core@7.20.0: 2269 - resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} 2270 - dependencies: 2271 - '@babel/parser': 7.21.4 2272 - '@babel/types': 7.21.4 2273 - '@types/babel__generator': 7.6.4 2274 - '@types/babel__template': 7.4.1 2275 - '@types/babel__traverse': 7.18.3 2276 - dev: false 2277 - 2278 - /@types/babel__generator@7.6.4: 2279 - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} 2280 - dependencies: 2281 - '@babel/types': 7.21.4 2282 - dev: false 2283 - 2284 - /@types/babel__template@7.4.1: 2285 - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} 2286 - dependencies: 2287 - '@babel/parser': 7.21.4 2288 - '@babel/types': 7.21.4 2289 - dev: false 2290 - 2291 - /@types/babel__traverse@7.18.3: 2292 - resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} 2293 - dependencies: 2294 - '@babel/types': 7.21.4 2295 - dev: false 2296 - 2297 - /@types/body-parser@1.19.2: 2298 - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} 2299 - dependencies: 2300 - '@types/connect': 3.4.35 2301 - '@types/node': 18.15.13 2302 - dev: false 2303 - 2304 - /@types/bonjour@3.5.10: 2305 - resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} 2306 - dependencies: 2307 - '@types/node': 18.15.13 2308 - dev: false 2309 - 2310 - /@types/connect-history-api-fallback@1.3.5: 2311 - resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} 2312 - dependencies: 2313 - '@types/express-serve-static-core': 4.17.33 2314 - '@types/node': 18.15.13 2315 - dev: false 2316 - 2317 - /@types/connect@3.4.35: 2318 - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} 2319 - dependencies: 2320 - '@types/node': 18.15.13 2321 - dev: false 2322 - 2323 - /@types/eslint-scope@3.7.4: 2324 - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} 2325 - dependencies: 2326 - '@types/eslint': 8.37.0 2327 - '@types/estree': 1.0.1 2328 - dev: false 2329 - 2330 - /@types/eslint@8.37.0: 2331 - resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==} 2332 - dependencies: 2333 - '@types/estree': 1.0.1 2334 - '@types/json-schema': 7.0.11 2335 - dev: false 2336 - 2337 - /@types/estree@0.0.39: 2338 - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} 2339 - dev: false 2340 - 2341 - /@types/estree@1.0.1: 2342 - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} 2343 - dev: false 2344 - 2345 - /@types/express-serve-static-core@4.17.33: 2346 - resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} 2347 - dependencies: 2348 - '@types/node': 18.15.13 2349 - '@types/qs': 6.9.7 2350 - '@types/range-parser': 1.2.4 2351 - dev: false 2352 - 2353 - /@types/express@4.17.17: 2354 - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} 2355 - dependencies: 2356 - '@types/body-parser': 1.19.2 2357 - '@types/express-serve-static-core': 4.17.33 2358 - '@types/qs': 6.9.7 2359 - '@types/serve-static': 1.15.1 2360 - dev: false 2361 - 2362 - /@types/graceful-fs@4.1.6: 2363 - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} 2364 - dependencies: 2365 - '@types/node': 18.15.13 2366 - dev: false 2367 - 2368 - /@types/html-minifier-terser@6.1.0: 2369 - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} 2370 - dev: false 2371 - 2372 - /@types/http-proxy@1.17.10: 2373 - resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==} 2374 - dependencies: 2375 - '@types/node': 18.15.13 2376 - dev: false 2377 - 2378 - /@types/istanbul-lib-coverage@2.0.4: 2379 - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} 2380 - dev: false 2381 - 2382 - /@types/istanbul-lib-report@3.0.0: 2383 - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} 2384 - dependencies: 2385 - '@types/istanbul-lib-coverage': 2.0.4 2386 - dev: false 2387 - 2388 - /@types/istanbul-reports@3.0.1: 2389 - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} 2390 - dependencies: 2391 - '@types/istanbul-lib-report': 3.0.0 2392 - dev: false 487 + requiresBuild: true 488 + peerDependencies: 489 + '@swc/helpers': ^0.5.0 490 + peerDependenciesMeta: 491 + '@swc/helpers': 492 + optional: true 493 + optionalDependencies: 494 + '@swc/core-darwin-arm64': 1.3.53 495 + '@swc/core-darwin-x64': 1.3.53 496 + '@swc/core-linux-arm-gnueabihf': 1.3.53 497 + '@swc/core-linux-arm64-gnu': 1.3.53 498 + '@swc/core-linux-arm64-musl': 1.3.53 499 + '@swc/core-linux-x64-gnu': 1.3.53 500 + '@swc/core-linux-x64-musl': 1.3.53 501 + '@swc/core-win32-arm64-msvc': 1.3.53 502 + '@swc/core-win32-ia32-msvc': 1.3.53 503 + '@swc/core-win32-x64-msvc': 1.3.53 504 + dev: true 2393 505 2394 506 /@types/json-schema@7.0.11: 2395 507 resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 2396 - 2397 - /@types/json5@0.0.29: 2398 - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 2399 - dev: false 2400 - 2401 - /@types/mime@3.0.1: 2402 - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} 2403 - dev: false 2404 - 2405 - /@types/node@18.15.13: 2406 - resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} 2407 - 2408 - /@types/parse-json@4.0.0: 2409 - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} 2410 - dev: false 2411 - 2412 - /@types/prettier@2.7.2: 2413 - resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} 2414 - dev: false 508 + dev: true 2415 509 2416 510 /@types/prop-types@15.7.5: 2417 511 resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 2418 512 dev: true 2419 513 2420 - /@types/q@1.5.5: 2421 - resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} 2422 - dev: false 2423 - 2424 - /@types/qs@6.9.7: 2425 - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} 2426 - dev: false 2427 - 2428 - /@types/range-parser@1.2.4: 2429 - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} 2430 - dev: false 2431 - 2432 514 /@types/react-dom@18.0.11: 2433 515 resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} 2434 516 dependencies: ··· 2443 525 csstype: 3.1.2 2444 526 dev: true 2445 527 2446 - /@types/resolve@1.17.1: 2447 - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} 2448 - dependencies: 2449 - '@types/node': 18.15.13 2450 - dev: false 2451 - 2452 - /@types/retry@0.12.0: 2453 - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} 2454 - dev: false 2455 - 2456 528 /@types/scheduler@0.16.3: 2457 529 resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 2458 530 dev: true 2459 531 2460 532 /@types/semver@7.3.13: 2461 533 resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} 2462 - 2463 - /@types/serve-index@1.9.1: 2464 - resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} 2465 - dependencies: 2466 - '@types/express': 4.17.17 2467 - dev: false 2468 - 2469 - /@types/serve-static@1.15.1: 2470 - resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} 2471 - dependencies: 2472 - '@types/mime': 3.0.1 2473 - '@types/node': 18.15.13 2474 - dev: false 2475 - 2476 - /@types/sockjs@0.3.33: 2477 - resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} 2478 - dependencies: 2479 - '@types/node': 18.15.13 2480 - dev: false 2481 - 2482 - /@types/stack-utils@2.0.1: 2483 - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} 2484 - dev: false 2485 - 2486 - /@types/trusted-types@2.0.3: 2487 - resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==} 2488 - dev: false 2489 - 2490 - /@types/ws@8.5.4: 2491 - resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} 2492 - dependencies: 2493 - '@types/node': 18.15.13 2494 - dev: false 534 + dev: true 2495 535 2496 - /@types/yargs-parser@21.0.0: 2497 - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} 2498 - dev: false 2499 - 2500 - /@types/yargs@16.0.5: 2501 - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} 2502 - dependencies: 2503 - '@types/yargs-parser': 21.0.0 2504 - dev: false 2505 - 2506 - /@types/yargs@17.0.24: 2507 - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} 2508 - dependencies: 2509 - '@types/yargs-parser': 21.0.0 2510 - dev: false 2511 - 2512 - /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5): 2513 - resolution: {integrity: sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==} 536 + /@typescript-eslint/eslint-plugin@5.59.0(@typescript-eslint/parser@5.59.0)(eslint@8.38.0)(typescript@5.0.4): 537 + resolution: {integrity: sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==} 2514 538 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2515 539 peerDependencies: 2516 540 '@typescript-eslint/parser': ^5.0.0 ··· 2521 545 optional: true 2522 546 dependencies: 2523 547 '@eslint-community/regexpp': 4.5.0 2524 - '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 2525 - '@typescript-eslint/scope-manager': 5.58.0 2526 - '@typescript-eslint/type-utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 2527 - '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 548 + '@typescript-eslint/parser': 5.59.0(eslint@8.38.0)(typescript@5.0.4) 549 + '@typescript-eslint/scope-manager': 5.59.0 550 + '@typescript-eslint/type-utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) 551 + '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) 2528 552 debug: 4.3.4 2529 553 eslint: 8.38.0 2530 554 grapheme-splitter: 1.0.4 2531 555 ignore: 5.2.4 2532 556 natural-compare-lite: 1.4.0 2533 557 semver: 7.5.0 2534 - tsutils: 3.21.0(typescript@4.9.5) 2535 - typescript: 4.9.5 558 + tsutils: 3.21.0(typescript@5.0.4) 559 + typescript: 5.0.4 2536 560 transitivePeerDependencies: 2537 561 - supports-color 562 + dev: true 2538 563 2539 - /@typescript-eslint/experimental-utils@5.59.0(eslint@8.38.0)(typescript@4.9.5): 2540 - resolution: {integrity: sha512-evvdzcPrUv9+Hj+KX6fa3WMrtTZ7onnGHL3NfT/zN9q2FQhb2yvNJDa+w/ND0TpdRCbulwag0dxwMUt2MJB2Vg==} 2541 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2542 - peerDependencies: 2543 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 2544 - dependencies: 2545 - '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@4.9.5) 2546 - eslint: 8.38.0 2547 - transitivePeerDependencies: 2548 - - supports-color 2549 - - typescript 2550 - dev: false 2551 - 2552 - /@typescript-eslint/parser@5.58.0(eslint@8.38.0)(typescript@4.9.5): 2553 - resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} 564 + /@typescript-eslint/parser@5.59.0(eslint@8.38.0)(typescript@5.0.4): 565 + resolution: {integrity: sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==} 2554 566 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2555 567 peerDependencies: 2556 568 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 ··· 2559 571 typescript: 2560 572 optional: true 2561 573 dependencies: 2562 - '@typescript-eslint/scope-manager': 5.58.0 2563 - '@typescript-eslint/types': 5.58.0 2564 - '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) 574 + '@typescript-eslint/scope-manager': 5.59.0 575 + '@typescript-eslint/types': 5.59.0 576 + '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) 2565 577 debug: 4.3.4 2566 578 eslint: 8.38.0 2567 - typescript: 4.9.5 579 + typescript: 5.0.4 2568 580 transitivePeerDependencies: 2569 581 - supports-color 2570 - 2571 - /@typescript-eslint/scope-manager@5.58.0: 2572 - resolution: {integrity: sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==} 2573 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2574 - dependencies: 2575 - '@typescript-eslint/types': 5.58.0 2576 - '@typescript-eslint/visitor-keys': 5.58.0 582 + dev: true 2577 583 2578 584 /@typescript-eslint/scope-manager@5.59.0: 2579 585 resolution: {integrity: sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==} ··· 2581 587 dependencies: 2582 588 '@typescript-eslint/types': 5.59.0 2583 589 '@typescript-eslint/visitor-keys': 5.59.0 2584 - dev: false 590 + dev: true 2585 591 2586 - /@typescript-eslint/type-utils@5.58.0(eslint@8.38.0)(typescript@4.9.5): 2587 - resolution: {integrity: sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==} 592 + /@typescript-eslint/type-utils@5.59.0(eslint@8.38.0)(typescript@5.0.4): 593 + resolution: {integrity: sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==} 2588 594 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2589 595 peerDependencies: 2590 596 eslint: '*' ··· 2593 599 typescript: 2594 600 optional: true 2595 601 dependencies: 2596 - '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) 2597 - '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 602 + '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) 603 + '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@5.0.4) 2598 604 debug: 4.3.4 2599 605 eslint: 8.38.0 2600 - tsutils: 3.21.0(typescript@4.9.5) 2601 - typescript: 4.9.5 606 + tsutils: 3.21.0(typescript@5.0.4) 607 + typescript: 5.0.4 2602 608 transitivePeerDependencies: 2603 609 - supports-color 2604 - 2605 - /@typescript-eslint/types@5.58.0: 2606 - resolution: {integrity: sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==} 2607 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 610 + dev: true 2608 611 2609 612 /@typescript-eslint/types@5.59.0: 2610 613 resolution: {integrity: sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==} 2611 614 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2612 - dev: false 615 + dev: true 2613 616 2614 - /@typescript-eslint/typescript-estree@5.58.0(typescript@4.9.5): 2615 - resolution: {integrity: sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==} 2616 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2617 - peerDependencies: 2618 - typescript: '*' 2619 - peerDependenciesMeta: 2620 - typescript: 2621 - optional: true 2622 - dependencies: 2623 - '@typescript-eslint/types': 5.58.0 2624 - '@typescript-eslint/visitor-keys': 5.58.0 2625 - debug: 4.3.4 2626 - globby: 11.1.0 2627 - is-glob: 4.0.3 2628 - semver: 7.5.0 2629 - tsutils: 3.21.0(typescript@4.9.5) 2630 - typescript: 4.9.5 2631 - transitivePeerDependencies: 2632 - - supports-color 2633 - 2634 - /@typescript-eslint/typescript-estree@5.59.0(typescript@4.9.5): 617 + /@typescript-eslint/typescript-estree@5.59.0(typescript@5.0.4): 2635 618 resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==} 2636 619 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2637 620 peerDependencies: ··· 2646 629 globby: 11.1.0 2647 630 is-glob: 4.0.3 2648 631 semver: 7.5.0 2649 - tsutils: 3.21.0(typescript@4.9.5) 2650 - typescript: 4.9.5 632 + tsutils: 3.21.0(typescript@5.0.4) 633 + typescript: 5.0.4 2651 634 transitivePeerDependencies: 2652 635 - supports-color 2653 - dev: false 636 + dev: true 2654 637 2655 - /@typescript-eslint/utils@5.58.0(eslint@8.38.0)(typescript@4.9.5): 2656 - resolution: {integrity: sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==} 2657 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2658 - peerDependencies: 2659 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 2660 - dependencies: 2661 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) 2662 - '@types/json-schema': 7.0.11 2663 - '@types/semver': 7.3.13 2664 - '@typescript-eslint/scope-manager': 5.58.0 2665 - '@typescript-eslint/types': 5.58.0 2666 - '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) 2667 - eslint: 8.38.0 2668 - eslint-scope: 5.1.1 2669 - semver: 7.5.0 2670 - transitivePeerDependencies: 2671 - - supports-color 2672 - - typescript 2673 - 2674 - /@typescript-eslint/utils@5.59.0(eslint@8.38.0)(typescript@4.9.5): 638 + /@typescript-eslint/utils@5.59.0(eslint@8.38.0)(typescript@5.0.4): 2675 639 resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==} 2676 640 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2677 641 peerDependencies: ··· 2682 646 '@types/semver': 7.3.13 2683 647 '@typescript-eslint/scope-manager': 5.59.0 2684 648 '@typescript-eslint/types': 5.59.0 2685 - '@typescript-eslint/typescript-estree': 5.59.0(typescript@4.9.5) 649 + '@typescript-eslint/typescript-estree': 5.59.0(typescript@5.0.4) 2686 650 eslint: 8.38.0 2687 651 eslint-scope: 5.1.1 2688 652 semver: 7.5.0 2689 653 transitivePeerDependencies: 2690 654 - supports-color 2691 655 - typescript 2692 - dev: false 2693 - 2694 - /@typescript-eslint/visitor-keys@5.58.0: 2695 - resolution: {integrity: sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==} 2696 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2697 - dependencies: 2698 - '@typescript-eslint/types': 5.58.0 2699 - eslint-visitor-keys: 3.4.0 656 + dev: true 2700 657 2701 658 /@typescript-eslint/visitor-keys@5.59.0: 2702 659 resolution: {integrity: sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==} ··· 2704 661 dependencies: 2705 662 '@typescript-eslint/types': 5.59.0 2706 663 eslint-visitor-keys: 3.4.0 2707 - dev: false 664 + dev: true 2708 665 2709 - /@webassemblyjs/ast@1.11.5: 2710 - resolution: {integrity: sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==} 2711 - dependencies: 2712 - '@webassemblyjs/helper-numbers': 1.11.5 2713 - '@webassemblyjs/helper-wasm-bytecode': 1.11.5 2714 - dev: false 2715 - 2716 - /@webassemblyjs/floating-point-hex-parser@1.11.5: 2717 - resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==} 2718 - dev: false 2719 - 2720 - /@webassemblyjs/helper-api-error@1.11.5: 2721 - resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==} 2722 - dev: false 2723 - 2724 - /@webassemblyjs/helper-buffer@1.11.5: 2725 - resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==} 2726 - dev: false 2727 - 2728 - /@webassemblyjs/helper-numbers@1.11.5: 2729 - resolution: {integrity: sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==} 2730 - dependencies: 2731 - '@webassemblyjs/floating-point-hex-parser': 1.11.5 2732 - '@webassemblyjs/helper-api-error': 1.11.5 2733 - '@xtuc/long': 4.2.2 2734 - dev: false 2735 - 2736 - /@webassemblyjs/helper-wasm-bytecode@1.11.5: 2737 - resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==} 2738 - dev: false 2739 - 2740 - /@webassemblyjs/helper-wasm-section@1.11.5: 2741 - resolution: {integrity: sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==} 2742 - dependencies: 2743 - '@webassemblyjs/ast': 1.11.5 2744 - '@webassemblyjs/helper-buffer': 1.11.5 2745 - '@webassemblyjs/helper-wasm-bytecode': 1.11.5 2746 - '@webassemblyjs/wasm-gen': 1.11.5 2747 - dev: false 2748 - 2749 - /@webassemblyjs/ieee754@1.11.5: 2750 - resolution: {integrity: sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==} 2751 - dependencies: 2752 - '@xtuc/ieee754': 1.2.0 2753 - dev: false 2754 - 2755 - /@webassemblyjs/leb128@1.11.5: 2756 - resolution: {integrity: sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==} 2757 - dependencies: 2758 - '@xtuc/long': 4.2.2 2759 - dev: false 2760 - 2761 - /@webassemblyjs/utf8@1.11.5: 2762 - resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==} 2763 - dev: false 2764 - 2765 - /@webassemblyjs/wasm-edit@1.11.5: 2766 - resolution: {integrity: sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==} 2767 - dependencies: 2768 - '@webassemblyjs/ast': 1.11.5 2769 - '@webassemblyjs/helper-buffer': 1.11.5 2770 - '@webassemblyjs/helper-wasm-bytecode': 1.11.5 2771 - '@webassemblyjs/helper-wasm-section': 1.11.5 2772 - '@webassemblyjs/wasm-gen': 1.11.5 2773 - '@webassemblyjs/wasm-opt': 1.11.5 2774 - '@webassemblyjs/wasm-parser': 1.11.5 2775 - '@webassemblyjs/wast-printer': 1.11.5 2776 - dev: false 2777 - 2778 - /@webassemblyjs/wasm-gen@1.11.5: 2779 - resolution: {integrity: sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==} 2780 - dependencies: 2781 - '@webassemblyjs/ast': 1.11.5 2782 - '@webassemblyjs/helper-wasm-bytecode': 1.11.5 2783 - '@webassemblyjs/ieee754': 1.11.5 2784 - '@webassemblyjs/leb128': 1.11.5 2785 - '@webassemblyjs/utf8': 1.11.5 2786 - dev: false 2787 - 2788 - /@webassemblyjs/wasm-opt@1.11.5: 2789 - resolution: {integrity: sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==} 2790 - dependencies: 2791 - '@webassemblyjs/ast': 1.11.5 2792 - '@webassemblyjs/helper-buffer': 1.11.5 2793 - '@webassemblyjs/wasm-gen': 1.11.5 2794 - '@webassemblyjs/wasm-parser': 1.11.5 2795 - dev: false 2796 - 2797 - /@webassemblyjs/wasm-parser@1.11.5: 2798 - resolution: {integrity: sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==} 2799 - dependencies: 2800 - '@webassemblyjs/ast': 1.11.5 2801 - '@webassemblyjs/helper-api-error': 1.11.5 2802 - '@webassemblyjs/helper-wasm-bytecode': 1.11.5 2803 - '@webassemblyjs/ieee754': 1.11.5 2804 - '@webassemblyjs/leb128': 1.11.5 2805 - '@webassemblyjs/utf8': 1.11.5 2806 - dev: false 2807 - 2808 - /@webassemblyjs/wast-printer@1.11.5: 2809 - resolution: {integrity: sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==} 2810 - dependencies: 2811 - '@webassemblyjs/ast': 1.11.5 2812 - '@xtuc/long': 4.2.2 2813 - dev: false 2814 - 2815 - /@xtuc/ieee754@1.2.0: 2816 - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} 2817 - dev: false 2818 - 2819 - /@xtuc/long@4.2.2: 2820 - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} 2821 - dev: false 2822 - 2823 - /abab@2.0.6: 2824 - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} 2825 - dev: false 2826 - 2827 - /accepts@1.3.8: 2828 - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 2829 - engines: {node: '>= 0.6'} 2830 - dependencies: 2831 - mime-types: 2.1.35 2832 - negotiator: 0.6.3 2833 - dev: false 2834 - 2835 - /acorn-globals@6.0.0: 2836 - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} 2837 - dependencies: 2838 - acorn: 7.4.1 2839 - acorn-walk: 7.2.0 2840 - dev: false 2841 - 2842 - /acorn-import-assertions@1.8.0(acorn@8.8.2): 2843 - resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} 666 + /@vitejs/plugin-react-swc@3.3.0(vite@4.3.1): 667 + resolution: {integrity: sha512-Ycg+n2eyCOTpn/wRy+evVo859+hw7qCj9iaX5CMny6x1fx1Uoq0xBG+a98lFtwLNGfGEnpI0F26YigRuxCRkwg==} 2844 668 peerDependencies: 2845 - acorn: ^8 669 + vite: ^4 2846 670 dependencies: 2847 - acorn: 8.8.2 2848 - dev: false 671 + '@swc/core': 1.3.53 672 + vite: 4.3.1 673 + transitivePeerDependencies: 674 + - '@swc/helpers' 675 + dev: true 2849 676 2850 677 /acorn-jsx@5.3.2(acorn@8.8.2): 2851 678 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} ··· 2853 680 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 2854 681 dependencies: 2855 682 acorn: 8.8.2 2856 - 2857 - /acorn-walk@7.2.0: 2858 - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} 2859 - engines: {node: '>=0.4.0'} 2860 - dev: false 2861 - 2862 - /acorn@7.4.1: 2863 - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 2864 - engines: {node: '>=0.4.0'} 2865 - hasBin: true 2866 - dev: false 683 + dev: true 2867 684 2868 685 /acorn@8.8.2: 2869 686 resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 2870 687 engines: {node: '>=0.4.0'} 2871 688 hasBin: true 2872 - 2873 - /address@1.2.2: 2874 - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} 2875 - engines: {node: '>= 10.0.0'} 2876 - dev: false 2877 - 2878 - /adjust-sourcemap-loader@4.0.0: 2879 - resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} 2880 - engines: {node: '>=8.9'} 2881 - dependencies: 2882 - loader-utils: 2.0.4 2883 - regex-parser: 2.2.11 2884 - dev: false 2885 - 2886 - /agent-base@6.0.2: 2887 - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} 2888 - engines: {node: '>= 6.0.0'} 2889 - dependencies: 2890 - debug: 4.3.4 2891 - transitivePeerDependencies: 2892 - - supports-color 2893 - dev: false 2894 - 2895 - /ajv-formats@2.1.1(ajv@8.12.0): 2896 - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} 2897 - peerDependencies: 2898 - ajv: ^8.0.0 2899 - peerDependenciesMeta: 2900 - ajv: 2901 - optional: true 2902 - dependencies: 2903 - ajv: 8.12.0 2904 - dev: false 2905 - 2906 - /ajv-keywords@3.5.2(ajv@6.12.6): 2907 - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} 2908 - peerDependencies: 2909 - ajv: ^6.9.1 2910 - dependencies: 2911 - ajv: 6.12.6 2912 - dev: false 2913 - 2914 - /ajv-keywords@5.1.0(ajv@8.12.0): 2915 - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} 2916 - peerDependencies: 2917 - ajv: ^8.8.2 2918 - dependencies: 2919 - ajv: 8.12.0 2920 - fast-deep-equal: 3.1.3 2921 - dev: false 689 + dev: true 2922 690 2923 691 /ajv@6.12.6: 2924 692 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} ··· 2927 695 fast-json-stable-stringify: 2.1.0 2928 696 json-schema-traverse: 0.4.1 2929 697 uri-js: 4.4.1 2930 - 2931 - /ajv@8.12.0: 2932 - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} 2933 - dependencies: 2934 - fast-deep-equal: 3.1.3 2935 - json-schema-traverse: 1.0.0 2936 - require-from-string: 2.0.2 2937 - uri-js: 4.4.1 2938 - dev: false 2939 - 2940 - /ansi-escapes@4.3.2: 2941 - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 2942 - engines: {node: '>=8'} 2943 - dependencies: 2944 - type-fest: 0.21.3 2945 - dev: false 2946 - 2947 - /ansi-html-community@0.0.8: 2948 - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} 2949 - engines: {'0': node >= 0.8.0} 2950 - hasBin: true 2951 - dev: false 698 + dev: true 2952 699 2953 700 /ansi-regex@5.0.1: 2954 701 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 2955 702 engines: {node: '>=8'} 2956 - 2957 - /ansi-regex@6.0.1: 2958 - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 2959 - engines: {node: '>=12'} 2960 - dev: false 2961 - 2962 - /ansi-styles@3.2.1: 2963 - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 2964 - engines: {node: '>=4'} 2965 - dependencies: 2966 - color-convert: 1.9.3 2967 - dev: false 703 + dev: true 2968 704 2969 705 /ansi-styles@4.3.0: 2970 706 resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 2971 707 engines: {node: '>=8'} 2972 708 dependencies: 2973 709 color-convert: 2.0.1 2974 - 2975 - /ansi-styles@5.2.0: 2976 - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 2977 - engines: {node: '>=10'} 2978 - dev: false 2979 - 2980 - /any-promise@1.3.0: 2981 - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 2982 - dev: false 2983 - 2984 - /anymatch@3.1.3: 2985 - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 2986 - engines: {node: '>= 8'} 2987 - dependencies: 2988 - normalize-path: 3.0.0 2989 - picomatch: 2.3.1 2990 - dev: false 2991 - 2992 - /arg@5.0.2: 2993 - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 2994 - dev: false 2995 - 2996 - /argparse@1.0.10: 2997 - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 2998 - dependencies: 2999 - sprintf-js: 1.0.3 3000 - dev: false 710 + dev: true 3001 711 3002 712 /argparse@2.0.1: 3003 713 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 3004 - 3005 - /aria-query@5.1.3: 3006 - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 3007 - dependencies: 3008 - deep-equal: 2.2.0 3009 - dev: false 3010 - 3011 - /array-buffer-byte-length@1.0.0: 3012 - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 3013 - dependencies: 3014 - call-bind: 1.0.2 3015 - is-array-buffer: 3.0.2 3016 - dev: false 3017 - 3018 - /array-flatten@1.1.1: 3019 - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 3020 - dev: false 3021 - 3022 - /array-flatten@2.1.2: 3023 - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} 3024 - dev: false 3025 - 3026 - /array-includes@3.1.6: 3027 - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 3028 - engines: {node: '>= 0.4'} 3029 - dependencies: 3030 - call-bind: 1.0.2 3031 - define-properties: 1.2.0 3032 - es-abstract: 1.21.2 3033 - get-intrinsic: 1.2.0 3034 - is-string: 1.0.7 3035 - dev: false 714 + dev: true 3036 715 3037 716 /array-union@2.1.0: 3038 717 resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 3039 718 engines: {node: '>=8'} 3040 - 3041 - /array.prototype.flat@1.3.1: 3042 - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 3043 - engines: {node: '>= 0.4'} 3044 - dependencies: 3045 - call-bind: 1.0.2 3046 - define-properties: 1.2.0 3047 - es-abstract: 1.21.2 3048 - es-shim-unscopables: 1.0.0 3049 - dev: false 3050 - 3051 - /array.prototype.flatmap@1.3.1: 3052 - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 3053 - engines: {node: '>= 0.4'} 3054 - dependencies: 3055 - call-bind: 1.0.2 3056 - define-properties: 1.2.0 3057 - es-abstract: 1.21.2 3058 - es-shim-unscopables: 1.0.0 3059 - dev: false 3060 - 3061 - /array.prototype.reduce@1.0.5: 3062 - resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} 3063 - engines: {node: '>= 0.4'} 3064 - dependencies: 3065 - call-bind: 1.0.2 3066 - define-properties: 1.2.0 3067 - es-abstract: 1.21.2 3068 - es-array-method-boxes-properly: 1.0.0 3069 - is-string: 1.0.7 3070 - dev: false 3071 - 3072 - /array.prototype.tosorted@1.1.1: 3073 - resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 3074 - dependencies: 3075 - call-bind: 1.0.2 3076 - define-properties: 1.2.0 3077 - es-abstract: 1.21.2 3078 - es-shim-unscopables: 1.0.0 3079 - get-intrinsic: 1.2.0 3080 - dev: false 3081 - 3082 - /asap@2.0.6: 3083 - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} 3084 - dev: false 3085 - 3086 - /ast-types-flow@0.0.7: 3087 - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 3088 - dev: false 3089 - 3090 - /async@3.2.4: 3091 - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} 3092 - dev: false 3093 - 3094 - /asynckit@0.4.0: 3095 - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 3096 - dev: false 3097 - 3098 - /at-least-node@1.0.0: 3099 - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} 3100 - engines: {node: '>= 4.0.0'} 3101 - dev: false 3102 - 3103 - /autoprefixer@10.4.14(postcss@8.4.23): 3104 - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} 3105 - engines: {node: ^10 || ^12 || >=14} 3106 - hasBin: true 3107 - peerDependencies: 3108 - postcss: ^8.1.0 3109 - dependencies: 3110 - browserslist: 4.21.5 3111 - caniuse-lite: 1.0.30001481 3112 - fraction.js: 4.2.0 3113 - normalize-range: 0.1.2 3114 - picocolors: 1.0.0 3115 - postcss: 8.4.23 3116 - postcss-value-parser: 4.2.0 3117 - dev: false 3118 - 3119 - /available-typed-arrays@1.0.5: 3120 - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 3121 - engines: {node: '>= 0.4'} 3122 - dev: false 3123 - 3124 - /axe-core@4.7.0: 3125 - resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 3126 - engines: {node: '>=4'} 3127 - dev: false 3128 - 3129 - /axobject-query@3.1.1: 3130 - resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 3131 - dependencies: 3132 - deep-equal: 2.2.0 3133 - dev: false 3134 - 3135 - /babel-jest@27.5.1(@babel/core@7.21.4): 3136 - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} 3137 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 3138 - peerDependencies: 3139 - '@babel/core': ^7.8.0 3140 - dependencies: 3141 - '@babel/core': 7.21.4 3142 - '@jest/transform': 27.5.1 3143 - '@jest/types': 27.5.1 3144 - '@types/babel__core': 7.20.0 3145 - babel-plugin-istanbul: 6.1.1 3146 - babel-preset-jest: 27.5.1(@babel/core@7.21.4) 3147 - chalk: 4.1.2 3148 - graceful-fs: 4.2.11 3149 - slash: 3.0.0 3150 - transitivePeerDependencies: 3151 - - supports-color 3152 - dev: false 3153 - 3154 - /babel-loader@8.3.0(@babel/core@7.21.4)(webpack@5.80.0): 3155 - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} 3156 - engines: {node: '>= 8.9'} 3157 - peerDependencies: 3158 - '@babel/core': ^7.0.0 3159 - webpack: '>=2' 3160 - dependencies: 3161 - '@babel/core': 7.21.4 3162 - find-cache-dir: 3.3.2 3163 - loader-utils: 2.0.4 3164 - make-dir: 3.1.0 3165 - schema-utils: 2.7.1 3166 - webpack: 5.80.0 3167 - dev: false 3168 - 3169 - /babel-plugin-istanbul@6.1.1: 3170 - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} 3171 - engines: {node: '>=8'} 3172 - dependencies: 3173 - '@babel/helper-plugin-utils': 7.20.2 3174 - '@istanbuljs/load-nyc-config': 1.1.0 3175 - '@istanbuljs/schema': 0.1.3 3176 - istanbul-lib-instrument: 5.2.1 3177 - test-exclude: 6.0.0 3178 - transitivePeerDependencies: 3179 - - supports-color 3180 - dev: false 3181 - 3182 - /babel-plugin-jest-hoist@27.5.1: 3183 - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} 3184 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 3185 - dependencies: 3186 - '@babel/template': 7.20.7 3187 - '@babel/types': 7.21.4 3188 - '@types/babel__core': 7.20.0 3189 - '@types/babel__traverse': 7.18.3 3190 - dev: false 3191 - 3192 - /babel-plugin-macros@3.1.0: 3193 - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} 3194 - engines: {node: '>=10', npm: '>=6'} 3195 - dependencies: 3196 - '@babel/runtime': 7.21.0 3197 - cosmiconfig: 7.1.0 3198 - resolve: 1.22.2 3199 - dev: false 3200 - 3201 - /babel-plugin-named-asset-import@0.3.8(@babel/core@7.21.4): 3202 - resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} 3203 - peerDependencies: 3204 - '@babel/core': ^7.1.0 3205 - dependencies: 3206 - '@babel/core': 7.21.4 3207 - dev: false 3208 - 3209 - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.4): 3210 - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} 3211 - peerDependencies: 3212 - '@babel/core': ^7.0.0-0 3213 - dependencies: 3214 - '@babel/compat-data': 7.21.4 3215 - '@babel/core': 7.21.4 3216 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4) 3217 - semver: 6.3.0 3218 - transitivePeerDependencies: 3219 - - supports-color 3220 - dev: false 3221 - 3222 - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.4): 3223 - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} 3224 - peerDependencies: 3225 - '@babel/core': ^7.0.0-0 3226 - dependencies: 3227 - '@babel/core': 7.21.4 3228 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4) 3229 - core-js-compat: 3.30.1 3230 - transitivePeerDependencies: 3231 - - supports-color 3232 - dev: false 3233 - 3234 - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.4): 3235 - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} 3236 - peerDependencies: 3237 - '@babel/core': ^7.0.0-0 3238 - dependencies: 3239 - '@babel/core': 7.21.4 3240 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4) 3241 - transitivePeerDependencies: 3242 - - supports-color 3243 - dev: false 3244 - 3245 - /babel-plugin-transform-react-remove-prop-types@0.4.24: 3246 - resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} 3247 - dev: false 3248 - 3249 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.4): 3250 - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} 3251 - peerDependencies: 3252 - '@babel/core': ^7.0.0 3253 - dependencies: 3254 - '@babel/core': 7.21.4 3255 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) 3256 - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.4) 3257 - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4) 3258 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.4) 3259 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) 3260 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) 3261 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) 3262 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) 3263 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) 3264 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) 3265 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) 3266 - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4) 3267 - dev: false 3268 - 3269 - /babel-preset-jest@27.5.1(@babel/core@7.21.4): 3270 - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} 3271 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 3272 - peerDependencies: 3273 - '@babel/core': ^7.0.0 3274 - dependencies: 3275 - '@babel/core': 7.21.4 3276 - babel-plugin-jest-hoist: 27.5.1 3277 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4) 3278 - dev: false 3279 - 3280 - /babel-preset-react-app@10.0.1: 3281 - resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} 3282 - dependencies: 3283 - '@babel/core': 7.21.4 3284 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4) 3285 - '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.4) 3286 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.4) 3287 - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.4) 3288 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.4) 3289 - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.4) 3290 - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.4) 3291 - '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.4) 3292 - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.4) 3293 - '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.21.4) 3294 - '@babel/preset-env': 7.21.4(@babel/core@7.21.4) 3295 - '@babel/preset-react': 7.18.6(@babel/core@7.21.4) 3296 - '@babel/preset-typescript': 7.21.4(@babel/core@7.21.4) 3297 - '@babel/runtime': 7.21.0 3298 - babel-plugin-macros: 3.1.0 3299 - babel-plugin-transform-react-remove-prop-types: 0.4.24 3300 - transitivePeerDependencies: 3301 - - supports-color 3302 - dev: false 719 + dev: true 3303 720 3304 721 /balanced-match@1.0.2: 3305 722 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 3306 - 3307 - /batch@0.6.1: 3308 - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} 3309 - dev: false 3310 - 3311 - /bfj@7.0.2: 3312 - resolution: {integrity: sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==} 3313 - engines: {node: '>= 8.0.0'} 3314 - dependencies: 3315 - bluebird: 3.7.2 3316 - check-types: 11.2.2 3317 - hoopy: 0.1.4 3318 - tryer: 1.0.1 3319 - dev: false 3320 - 3321 - /big.js@5.2.2: 3322 - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} 3323 - dev: false 3324 - 3325 - /binary-extensions@2.2.0: 3326 - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 3327 - engines: {node: '>=8'} 3328 - dev: false 3329 - 3330 - /bluebird@3.7.2: 3331 - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} 3332 - dev: false 3333 - 3334 - /body-parser@1.20.1: 3335 - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} 3336 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 3337 - dependencies: 3338 - bytes: 3.1.2 3339 - content-type: 1.0.5 3340 - debug: 2.6.9 3341 - depd: 2.0.0 3342 - destroy: 1.2.0 3343 - http-errors: 2.0.0 3344 - iconv-lite: 0.4.24 3345 - on-finished: 2.4.1 3346 - qs: 6.11.0 3347 - raw-body: 2.5.1 3348 - type-is: 1.6.18 3349 - unpipe: 1.0.0 3350 - transitivePeerDependencies: 3351 - - supports-color 3352 - dev: false 3353 - 3354 - /bonjour-service@1.1.1: 3355 - resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==} 3356 - dependencies: 3357 - array-flatten: 2.1.2 3358 - dns-equal: 1.0.0 3359 - fast-deep-equal: 3.1.3 3360 - multicast-dns: 7.2.5 3361 - dev: false 3362 - 3363 - /boolbase@1.0.0: 3364 - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 3365 - dev: false 723 + dev: true 3366 724 3367 725 /brace-expansion@1.1.11: 3368 726 resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 3369 727 dependencies: 3370 728 balanced-match: 1.0.2 3371 729 concat-map: 0.0.1 3372 - 3373 - /brace-expansion@2.0.1: 3374 - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 3375 - dependencies: 3376 - balanced-match: 1.0.2 3377 - dev: false 730 + dev: true 3378 731 3379 732 /braces@3.0.2: 3380 733 resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 3381 734 engines: {node: '>=8'} 3382 735 dependencies: 3383 736 fill-range: 7.0.1 3384 - 3385 - /browser-process-hrtime@1.0.0: 3386 - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} 3387 - dev: false 3388 - 3389 - /browserslist@4.21.5: 3390 - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} 3391 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3392 - hasBin: true 3393 - dependencies: 3394 - caniuse-lite: 1.0.30001481 3395 - electron-to-chromium: 1.4.368 3396 - node-releases: 2.0.10 3397 - update-browserslist-db: 1.0.11(browserslist@4.21.5) 3398 - dev: false 3399 - 3400 - /bser@2.1.1: 3401 - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} 3402 - dependencies: 3403 - node-int64: 0.4.0 3404 - dev: false 3405 - 3406 - /buffer-from@1.1.2: 3407 - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 3408 - dev: false 3409 - 3410 - /builtin-modules@3.3.0: 3411 - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} 3412 - engines: {node: '>=6'} 3413 - dev: false 3414 - 3415 - /bytes@3.0.0: 3416 - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} 3417 - engines: {node: '>= 0.8'} 3418 - dev: false 3419 - 3420 - /bytes@3.1.2: 3421 - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 3422 - engines: {node: '>= 0.8'} 3423 - dev: false 3424 - 3425 - /call-bind@1.0.2: 3426 - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 3427 - dependencies: 3428 - function-bind: 1.1.1 3429 - get-intrinsic: 1.2.0 3430 - dev: false 737 + dev: true 3431 738 3432 739 /callsites@3.1.0: 3433 740 resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 3434 741 engines: {node: '>=6'} 3435 - 3436 - /camel-case@4.1.2: 3437 - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} 3438 - dependencies: 3439 - pascal-case: 3.1.2 3440 - tslib: 2.5.0 3441 - dev: false 3442 - 3443 - /camelcase-css@2.0.1: 3444 - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 3445 - engines: {node: '>= 6'} 3446 - dev: false 3447 - 3448 - /camelcase@5.3.1: 3449 - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} 3450 - engines: {node: '>=6'} 3451 - dev: false 3452 - 3453 - /camelcase@6.3.0: 3454 - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} 3455 - engines: {node: '>=10'} 3456 - dev: false 3457 - 3458 - /caniuse-api@3.0.0: 3459 - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} 3460 - dependencies: 3461 - browserslist: 4.21.5 3462 - caniuse-lite: 1.0.30001481 3463 - lodash.memoize: 4.1.2 3464 - lodash.uniq: 4.5.0 3465 - dev: false 3466 - 3467 - /caniuse-lite@1.0.30001481: 3468 - resolution: {integrity: sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==} 3469 - dev: false 3470 - 3471 - /case-sensitive-paths-webpack-plugin@2.4.0: 3472 - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} 3473 - engines: {node: '>=4'} 3474 - dev: false 3475 - 3476 - /chalk@2.4.2: 3477 - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 3478 - engines: {node: '>=4'} 3479 - dependencies: 3480 - ansi-styles: 3.2.1 3481 - escape-string-regexp: 1.0.5 3482 - supports-color: 5.5.0 3483 - dev: false 742 + dev: true 3484 743 3485 744 /chalk@4.1.2: 3486 745 resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} ··· 3488 747 dependencies: 3489 748 ansi-styles: 4.3.0 3490 749 supports-color: 7.2.0 3491 - 3492 - /char-regex@1.0.2: 3493 - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 3494 - engines: {node: '>=10'} 3495 - dev: false 3496 - 3497 - /char-regex@2.0.1: 3498 - resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==} 3499 - engines: {node: '>=12.20'} 3500 - dev: false 3501 - 3502 - /check-types@11.2.2: 3503 - resolution: {integrity: sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==} 3504 - dev: false 3505 - 3506 - /chokidar@3.5.3: 3507 - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 3508 - engines: {node: '>= 8.10.0'} 3509 - dependencies: 3510 - anymatch: 3.1.3 3511 - braces: 3.0.2 3512 - glob-parent: 5.1.2 3513 - is-binary-path: 2.1.0 3514 - is-glob: 4.0.3 3515 - normalize-path: 3.0.0 3516 - readdirp: 3.6.0 3517 - optionalDependencies: 3518 - fsevents: 2.3.2 3519 - dev: false 3520 - 3521 - /chrome-trace-event@1.0.3: 3522 - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} 3523 - engines: {node: '>=6.0'} 3524 - dev: false 3525 - 3526 - /ci-info@3.8.0: 3527 - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} 3528 - engines: {node: '>=8'} 3529 - dev: false 3530 - 3531 - /cjs-module-lexer@1.2.2: 3532 - resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} 3533 - dev: false 750 + dev: true 3534 751 3535 752 /classnames@2.3.2: 3536 753 resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} 3537 754 dev: false 3538 755 3539 - /clean-css@5.3.2: 3540 - resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==} 3541 - engines: {node: '>= 10.0'} 3542 - dependencies: 3543 - source-map: 0.6.1 3544 - dev: false 3545 - 3546 - /cliui@7.0.4: 3547 - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 3548 - dependencies: 3549 - string-width: 4.2.3 3550 - strip-ansi: 6.0.1 3551 - wrap-ansi: 7.0.0 3552 - dev: false 3553 - 3554 - /co@4.6.0: 3555 - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} 3556 - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} 3557 - dev: false 3558 - 3559 - /coa@2.0.2: 3560 - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} 3561 - engines: {node: '>= 4.0'} 3562 - dependencies: 3563 - '@types/q': 1.5.5 3564 - chalk: 2.4.2 3565 - q: 1.5.1 3566 - dev: false 3567 - 3568 - /collect-v8-coverage@1.0.1: 3569 - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} 3570 - dev: false 3571 - 3572 - /color-convert@1.9.3: 3573 - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 3574 - dependencies: 3575 - color-name: 1.1.3 3576 - dev: false 3577 - 3578 756 /color-convert@2.0.1: 3579 757 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 3580 758 engines: {node: '>=7.0.0'} 3581 759 dependencies: 3582 760 color-name: 1.1.4 3583 - 3584 - /color-name@1.1.3: 3585 - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 3586 - dev: false 761 + dev: true 3587 762 3588 763 /color-name@1.1.4: 3589 764 resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 3590 - 3591 - /colord@2.9.3: 3592 - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} 3593 - dev: false 3594 - 3595 - /colorette@2.0.20: 3596 - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 3597 - dev: false 3598 - 3599 - /combined-stream@1.0.8: 3600 - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 3601 - engines: {node: '>= 0.8'} 3602 - dependencies: 3603 - delayed-stream: 1.0.0 3604 - dev: false 3605 - 3606 - /commander@2.20.3: 3607 - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 3608 - dev: false 3609 - 3610 - /commander@4.1.1: 3611 - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 3612 - engines: {node: '>= 6'} 3613 - dev: false 3614 - 3615 - /commander@7.2.0: 3616 - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} 3617 - engines: {node: '>= 10'} 3618 - dev: false 3619 - 3620 - /commander@8.3.0: 3621 - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 3622 - engines: {node: '>= 12'} 3623 - dev: false 3624 - 3625 - /common-path-prefix@3.0.0: 3626 - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} 3627 - dev: false 3628 - 3629 - /common-tags@1.8.2: 3630 - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} 3631 - engines: {node: '>=4.0.0'} 3632 - dev: false 3633 - 3634 - /commondir@1.0.1: 3635 - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 3636 - dev: false 3637 - 3638 - /compressible@2.0.18: 3639 - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} 3640 - engines: {node: '>= 0.6'} 3641 - dependencies: 3642 - mime-db: 1.52.0 3643 - dev: false 3644 - 3645 - /compression@1.7.4: 3646 - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} 3647 - engines: {node: '>= 0.8.0'} 3648 - dependencies: 3649 - accepts: 1.3.8 3650 - bytes: 3.0.0 3651 - compressible: 2.0.18 3652 - debug: 2.6.9 3653 - on-headers: 1.0.2 3654 - safe-buffer: 5.1.2 3655 - vary: 1.1.2 3656 - transitivePeerDependencies: 3657 - - supports-color 3658 - dev: false 765 + dev: true 3659 766 3660 767 /concat-map@0.0.1: 3661 768 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 3662 - 3663 - /confusing-browser-globals@1.0.11: 3664 - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} 3665 - dev: false 3666 - 3667 - /connect-history-api-fallback@2.0.0: 3668 - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} 3669 - engines: {node: '>=0.8'} 3670 - dev: false 3671 - 3672 - /content-disposition@0.5.4: 3673 - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 3674 - engines: {node: '>= 0.6'} 3675 - dependencies: 3676 - safe-buffer: 5.2.1 3677 - dev: false 3678 - 3679 - /content-type@1.0.5: 3680 - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 3681 - engines: {node: '>= 0.6'} 3682 - dev: false 3683 - 3684 - /convert-source-map@1.9.0: 3685 - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 3686 - dev: false 3687 - 3688 - /cookie-signature@1.0.6: 3689 - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 3690 - dev: false 3691 - 3692 - /cookie@0.5.0: 3693 - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} 3694 - engines: {node: '>= 0.6'} 3695 - dev: false 3696 - 3697 - /core-js-compat@3.30.1: 3698 - resolution: {integrity: sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==} 3699 - dependencies: 3700 - browserslist: 4.21.5 3701 - dev: false 3702 - 3703 - /core-js-pure@3.30.1: 3704 - resolution: {integrity: sha512-nXBEVpmUnNRhz83cHd9JRQC52cTMcuXAmR56+9dSMpRdpeA4I1PX6yjmhd71Eyc/wXNsdBdUDIj1QTIeZpU5Tg==} 3705 - requiresBuild: true 3706 - dev: false 3707 - 3708 - /core-js@3.30.1: 3709 - resolution: {integrity: sha512-ZNS5nbiSwDTq4hFosEDqm65izl2CWmLz0hARJMyNQBgkUZMIF51cQiMvIQKA6hvuaeWxQDP3hEedM1JZIgTldQ==} 3710 - requiresBuild: true 3711 - dev: false 3712 - 3713 - /core-util-is@1.0.3: 3714 - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 3715 - dev: false 3716 - 3717 - /cosmiconfig@6.0.0: 3718 - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} 3719 - engines: {node: '>=8'} 3720 - dependencies: 3721 - '@types/parse-json': 4.0.0 3722 - import-fresh: 3.3.0 3723 - parse-json: 5.2.0 3724 - path-type: 4.0.0 3725 - yaml: 1.10.2 3726 - dev: false 3727 - 3728 - /cosmiconfig@7.1.0: 3729 - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} 3730 - engines: {node: '>=10'} 3731 - dependencies: 3732 - '@types/parse-json': 4.0.0 3733 - import-fresh: 3.3.0 3734 - parse-json: 5.2.0 3735 - path-type: 4.0.0 3736 - yaml: 1.10.2 3737 - dev: false 769 + dev: true 3738 770 3739 771 /cross-spawn@7.0.3: 3740 772 resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} ··· 3743 775 path-key: 3.1.1 3744 776 shebang-command: 2.0.0 3745 777 which: 2.0.2 3746 - 3747 - /crypto-random-string@2.0.0: 3748 - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} 3749 - engines: {node: '>=8'} 3750 - dev: false 3751 - 3752 - /css-blank-pseudo@3.0.3(postcss@8.4.23): 3753 - resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} 3754 - engines: {node: ^12 || ^14 || >=16} 3755 - hasBin: true 3756 - peerDependencies: 3757 - postcss: ^8.4 3758 - dependencies: 3759 - postcss: 8.4.23 3760 - postcss-selector-parser: 6.0.11 3761 - dev: false 3762 - 3763 - /css-declaration-sorter@6.4.0(postcss@8.4.23): 3764 - resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==} 3765 - engines: {node: ^10 || ^12 || >=14} 3766 - peerDependencies: 3767 - postcss: ^8.0.9 3768 - dependencies: 3769 - postcss: 8.4.23 3770 - dev: false 3771 - 3772 - /css-has-pseudo@3.0.4(postcss@8.4.23): 3773 - resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} 3774 - engines: {node: ^12 || ^14 || >=16} 3775 - hasBin: true 3776 - peerDependencies: 3777 - postcss: ^8.4 3778 - dependencies: 3779 - postcss: 8.4.23 3780 - postcss-selector-parser: 6.0.11 3781 - dev: false 3782 - 3783 - /css-loader@6.7.3(webpack@5.80.0): 3784 - resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} 3785 - engines: {node: '>= 12.13.0'} 3786 - peerDependencies: 3787 - webpack: ^5.0.0 3788 - dependencies: 3789 - icss-utils: 5.1.0(postcss@8.4.23) 3790 - postcss: 8.4.23 3791 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.23) 3792 - postcss-modules-local-by-default: 4.0.0(postcss@8.4.23) 3793 - postcss-modules-scope: 3.0.0(postcss@8.4.23) 3794 - postcss-modules-values: 4.0.0(postcss@8.4.23) 3795 - postcss-value-parser: 4.2.0 3796 - semver: 7.5.0 3797 - webpack: 5.80.0 3798 - dev: false 3799 - 3800 - /css-minimizer-webpack-plugin@3.4.1(webpack@5.80.0): 3801 - resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} 3802 - engines: {node: '>= 12.13.0'} 3803 - peerDependencies: 3804 - '@parcel/css': '*' 3805 - clean-css: '*' 3806 - csso: '*' 3807 - esbuild: '*' 3808 - webpack: ^5.0.0 3809 - peerDependenciesMeta: 3810 - '@parcel/css': 3811 - optional: true 3812 - clean-css: 3813 - optional: true 3814 - csso: 3815 - optional: true 3816 - esbuild: 3817 - optional: true 3818 - dependencies: 3819 - cssnano: 5.1.15(postcss@8.4.23) 3820 - jest-worker: 27.5.1 3821 - postcss: 8.4.23 3822 - schema-utils: 4.0.1 3823 - serialize-javascript: 6.0.1 3824 - source-map: 0.6.1 3825 - webpack: 5.80.0 3826 - dev: false 3827 - 3828 - /css-prefers-color-scheme@6.0.3(postcss@8.4.23): 3829 - resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} 3830 - engines: {node: ^12 || ^14 || >=16} 3831 - hasBin: true 3832 - peerDependencies: 3833 - postcss: ^8.4 3834 - dependencies: 3835 - postcss: 8.4.23 3836 - dev: false 3837 - 3838 - /css-select-base-adapter@0.1.1: 3839 - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} 3840 - dev: false 3841 - 3842 - /css-select@2.1.0: 3843 - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} 3844 - dependencies: 3845 - boolbase: 1.0.0 3846 - css-what: 3.4.2 3847 - domutils: 1.7.0 3848 - nth-check: 1.0.2 3849 - dev: false 3850 - 3851 - /css-select@4.3.0: 3852 - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} 3853 - dependencies: 3854 - boolbase: 1.0.0 3855 - css-what: 6.1.0 3856 - domhandler: 4.3.1 3857 - domutils: 2.8.0 3858 - nth-check: 2.1.1 3859 - dev: false 3860 - 3861 - /css-tree@1.0.0-alpha.37: 3862 - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} 3863 - engines: {node: '>=8.0.0'} 3864 - dependencies: 3865 - mdn-data: 2.0.4 3866 - source-map: 0.6.1 3867 - dev: false 3868 - 3869 - /css-tree@1.1.3: 3870 - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} 3871 - engines: {node: '>=8.0.0'} 3872 - dependencies: 3873 - mdn-data: 2.0.14 3874 - source-map: 0.6.1 3875 - dev: false 3876 - 3877 - /css-what@3.4.2: 3878 - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} 3879 - engines: {node: '>= 6'} 3880 - dev: false 3881 - 3882 - /css-what@6.1.0: 3883 - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 3884 - engines: {node: '>= 6'} 3885 - dev: false 3886 - 3887 - /cssdb@7.5.4: 3888 - resolution: {integrity: sha512-fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg==} 3889 - dev: false 3890 - 3891 - /cssesc@3.0.0: 3892 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 3893 - engines: {node: '>=4'} 3894 - hasBin: true 3895 - dev: false 3896 - 3897 - /cssnano-preset-default@5.2.14(postcss@8.4.23): 3898 - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} 3899 - engines: {node: ^10 || ^12 || >=14.0} 3900 - peerDependencies: 3901 - postcss: ^8.2.15 3902 - dependencies: 3903 - css-declaration-sorter: 6.4.0(postcss@8.4.23) 3904 - cssnano-utils: 3.1.0(postcss@8.4.23) 3905 - postcss: 8.4.23 3906 - postcss-calc: 8.2.4(postcss@8.4.23) 3907 - postcss-colormin: 5.3.1(postcss@8.4.23) 3908 - postcss-convert-values: 5.1.3(postcss@8.4.23) 3909 - postcss-discard-comments: 5.1.2(postcss@8.4.23) 3910 - postcss-discard-duplicates: 5.1.0(postcss@8.4.23) 3911 - postcss-discard-empty: 5.1.1(postcss@8.4.23) 3912 - postcss-discard-overridden: 5.1.0(postcss@8.4.23) 3913 - postcss-merge-longhand: 5.1.7(postcss@8.4.23) 3914 - postcss-merge-rules: 5.1.4(postcss@8.4.23) 3915 - postcss-minify-font-values: 5.1.0(postcss@8.4.23) 3916 - postcss-minify-gradients: 5.1.1(postcss@8.4.23) 3917 - postcss-minify-params: 5.1.4(postcss@8.4.23) 3918 - postcss-minify-selectors: 5.2.1(postcss@8.4.23) 3919 - postcss-normalize-charset: 5.1.0(postcss@8.4.23) 3920 - postcss-normalize-display-values: 5.1.0(postcss@8.4.23) 3921 - postcss-normalize-positions: 5.1.1(postcss@8.4.23) 3922 - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.23) 3923 - postcss-normalize-string: 5.1.0(postcss@8.4.23) 3924 - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.23) 3925 - postcss-normalize-unicode: 5.1.1(postcss@8.4.23) 3926 - postcss-normalize-url: 5.1.0(postcss@8.4.23) 3927 - postcss-normalize-whitespace: 5.1.1(postcss@8.4.23) 3928 - postcss-ordered-values: 5.1.3(postcss@8.4.23) 3929 - postcss-reduce-initial: 5.1.2(postcss@8.4.23) 3930 - postcss-reduce-transforms: 5.1.0(postcss@8.4.23) 3931 - postcss-svgo: 5.1.0(postcss@8.4.23) 3932 - postcss-unique-selectors: 5.1.1(postcss@8.4.23) 3933 - dev: false 3934 - 3935 - /cssnano-utils@3.1.0(postcss@8.4.23): 3936 - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} 3937 - engines: {node: ^10 || ^12 || >=14.0} 3938 - peerDependencies: 3939 - postcss: ^8.2.15 3940 - dependencies: 3941 - postcss: 8.4.23 3942 - dev: false 3943 - 3944 - /cssnano@5.1.15(postcss@8.4.23): 3945 - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} 3946 - engines: {node: ^10 || ^12 || >=14.0} 3947 - peerDependencies: 3948 - postcss: ^8.2.15 3949 - dependencies: 3950 - cssnano-preset-default: 5.2.14(postcss@8.4.23) 3951 - lilconfig: 2.1.0 3952 - postcss: 8.4.23 3953 - yaml: 1.10.2 3954 - dev: false 3955 - 3956 - /csso@4.2.0: 3957 - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} 3958 - engines: {node: '>=8.0.0'} 3959 - dependencies: 3960 - css-tree: 1.1.3 3961 - dev: false 3962 - 3963 - /cssom@0.3.8: 3964 - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} 3965 - dev: false 3966 - 3967 - /cssom@0.4.4: 3968 - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} 3969 - dev: false 3970 - 3971 - /cssstyle@2.3.0: 3972 - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} 3973 - engines: {node: '>=8'} 3974 - dependencies: 3975 - cssom: 0.3.8 3976 - dev: false 778 + dev: true 3977 779 3978 780 /csstype@3.1.2: 3979 781 resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 3980 782 dev: true 3981 - 3982 - /damerau-levenshtein@1.0.8: 3983 - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 3984 - dev: false 3985 - 3986 - /data-urls@2.0.0: 3987 - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} 3988 - engines: {node: '>=10'} 3989 - dependencies: 3990 - abab: 2.0.6 3991 - whatwg-mimetype: 2.3.0 3992 - whatwg-url: 8.7.0 3993 - dev: false 3994 - 3995 - /debug@2.6.9: 3996 - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 3997 - peerDependencies: 3998 - supports-color: '*' 3999 - peerDependenciesMeta: 4000 - supports-color: 4001 - optional: true 4002 - dependencies: 4003 - ms: 2.0.0 4004 - dev: false 4005 - 4006 - /debug@3.2.7: 4007 - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 4008 - peerDependencies: 4009 - supports-color: '*' 4010 - peerDependenciesMeta: 4011 - supports-color: 4012 - optional: true 4013 - dependencies: 4014 - ms: 2.1.3 4015 - dev: false 4016 783 4017 784 /debug@4.3.4: 4018 785 resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} ··· 4024 791 optional: true 4025 792 dependencies: 4026 793 ms: 2.1.2 4027 - 4028 - /decimal.js@10.4.3: 4029 - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} 4030 - dev: false 4031 - 4032 - /dedent@0.7.0: 4033 - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} 4034 - dev: false 4035 - 4036 - /deep-equal@2.2.0: 4037 - resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} 4038 - dependencies: 4039 - call-bind: 1.0.2 4040 - es-get-iterator: 1.1.3 4041 - get-intrinsic: 1.2.0 4042 - is-arguments: 1.1.1 4043 - is-array-buffer: 3.0.2 4044 - is-date-object: 1.0.5 4045 - is-regex: 1.1.4 4046 - is-shared-array-buffer: 1.0.2 4047 - isarray: 2.0.5 4048 - object-is: 1.1.5 4049 - object-keys: 1.1.1 4050 - object.assign: 4.1.4 4051 - regexp.prototype.flags: 1.5.0 4052 - side-channel: 1.0.4 4053 - which-boxed-primitive: 1.0.2 4054 - which-collection: 1.0.1 4055 - which-typed-array: 1.1.9 4056 - dev: false 794 + dev: true 4057 795 4058 796 /deep-is@0.1.4: 4059 797 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 4060 - 4061 - /deepmerge@4.3.1: 4062 - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 4063 - engines: {node: '>=0.10.0'} 4064 - dev: false 4065 - 4066 - /default-gateway@6.0.3: 4067 - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} 4068 - engines: {node: '>= 10'} 4069 - dependencies: 4070 - execa: 5.1.1 4071 - dev: false 4072 - 4073 - /define-lazy-prop@2.0.0: 4074 - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 4075 - engines: {node: '>=8'} 4076 - dev: false 4077 - 4078 - /define-properties@1.2.0: 4079 - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 4080 - engines: {node: '>= 0.4'} 4081 - dependencies: 4082 - has-property-descriptors: 1.0.0 4083 - object-keys: 1.1.1 4084 - dev: false 4085 - 4086 - /delayed-stream@1.0.0: 4087 - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 4088 - engines: {node: '>=0.4.0'} 4089 - dev: false 4090 - 4091 - /depd@1.1.2: 4092 - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} 4093 - engines: {node: '>= 0.6'} 4094 - dev: false 4095 - 4096 - /depd@2.0.0: 4097 - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 4098 - engines: {node: '>= 0.8'} 4099 - dev: false 4100 - 4101 - /destroy@1.2.0: 4102 - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 4103 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 4104 - dev: false 4105 - 4106 - /detect-newline@3.1.0: 4107 - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} 4108 - engines: {node: '>=8'} 4109 - dev: false 4110 - 4111 - /detect-node@2.1.0: 4112 - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} 4113 - dev: false 4114 - 4115 - /detect-port-alt@1.1.6: 4116 - resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} 4117 - engines: {node: '>= 4.2.1'} 4118 - hasBin: true 4119 - dependencies: 4120 - address: 1.2.2 4121 - debug: 2.6.9 4122 - transitivePeerDependencies: 4123 - - supports-color 4124 - dev: false 4125 - 4126 - /didyoumean@1.2.2: 4127 - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 4128 - dev: false 4129 - 4130 - /diff-sequences@27.5.1: 4131 - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} 4132 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 4133 - dev: false 798 + dev: true 4134 799 4135 800 /dir-glob@3.0.1: 4136 801 resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 4137 802 engines: {node: '>=8'} 4138 803 dependencies: 4139 804 path-type: 4.0.0 4140 - 4141 - /dlv@1.1.3: 4142 - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 4143 - dev: false 4144 - 4145 - /dns-equal@1.0.0: 4146 - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} 4147 - dev: false 4148 - 4149 - /dns-packet@5.6.0: 4150 - resolution: {integrity: sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==} 4151 - engines: {node: '>=6'} 4152 - dependencies: 4153 - '@leichtgewicht/ip-codec': 2.0.4 4154 - dev: false 4155 - 4156 - /doctrine@2.1.0: 4157 - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 4158 - engines: {node: '>=0.10.0'} 4159 - dependencies: 4160 - esutils: 2.0.3 4161 - dev: false 805 + dev: true 4162 806 4163 807 /doctrine@3.0.0: 4164 808 resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 4165 809 engines: {node: '>=6.0.0'} 4166 810 dependencies: 4167 811 esutils: 2.0.3 4168 - 4169 - /dom-converter@0.2.0: 4170 - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} 4171 - dependencies: 4172 - utila: 0.4.0 4173 - dev: false 4174 - 4175 - /dom-serializer@0.2.2: 4176 - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} 4177 - dependencies: 4178 - domelementtype: 2.3.0 4179 - entities: 2.2.0 4180 - dev: false 4181 - 4182 - /dom-serializer@1.4.1: 4183 - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} 4184 - dependencies: 4185 - domelementtype: 2.3.0 4186 - domhandler: 4.3.1 4187 - entities: 2.2.0 4188 - dev: false 4189 - 4190 - /domelementtype@1.3.1: 4191 - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} 4192 - dev: false 4193 - 4194 - /domelementtype@2.3.0: 4195 - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 4196 - dev: false 4197 - 4198 - /domexception@2.0.1: 4199 - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} 4200 - engines: {node: '>=8'} 4201 - dependencies: 4202 - webidl-conversions: 5.0.0 4203 - dev: false 4204 - 4205 - /domhandler@4.3.1: 4206 - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} 4207 - engines: {node: '>= 4'} 4208 - dependencies: 4209 - domelementtype: 2.3.0 4210 - dev: false 4211 - 4212 - /domutils@1.7.0: 4213 - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} 4214 - dependencies: 4215 - dom-serializer: 0.2.2 4216 - domelementtype: 1.3.1 4217 - dev: false 4218 - 4219 - /domutils@2.8.0: 4220 - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} 4221 - dependencies: 4222 - dom-serializer: 1.4.1 4223 - domelementtype: 2.3.0 4224 - domhandler: 4.3.1 4225 - dev: false 812 + dev: true 4226 813 4227 - /dot-case@3.0.4: 4228 - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 4229 - dependencies: 4230 - no-case: 3.0.4 4231 - tslib: 2.5.0 4232 - dev: false 4233 - 4234 - /dotenv-expand@5.1.0: 4235 - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} 4236 - dev: false 4237 - 4238 - /dotenv@10.0.0: 4239 - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} 4240 - engines: {node: '>=10'} 4241 - dev: false 4242 - 4243 - /duplexer@0.1.2: 4244 - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 4245 - dev: false 4246 - 4247 - /ee-first@1.1.1: 4248 - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 4249 - dev: false 4250 - 4251 - /ejs@3.1.9: 4252 - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} 4253 - engines: {node: '>=0.10.0'} 814 + /esbuild@0.17.17: 815 + resolution: {integrity: sha512-/jUywtAymR8jR4qsa2RujlAF7Krpt5VWi72Q2yuLD4e/hvtNcFQ0I1j8m/bxq238pf3/0KO5yuXNpuLx8BE1KA==} 816 + engines: {node: '>=12'} 4254 817 hasBin: true 4255 - dependencies: 4256 - jake: 10.8.5 4257 - dev: false 4258 - 4259 - /electron-to-chromium@1.4.368: 4260 - resolution: {integrity: sha512-e2aeCAixCj9M7nJxdB/wDjO6mbYX+lJJxSJCXDzlr5YPGYVofuJwGN9nKg2o6wWInjX6XmxRinn3AeJMK81ltw==} 4261 - dev: false 4262 - 4263 - /emittery@0.10.2: 4264 - resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} 4265 - engines: {node: '>=12'} 4266 - dev: false 4267 - 4268 - /emittery@0.8.1: 4269 - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} 4270 - engines: {node: '>=10'} 4271 - dev: false 4272 - 4273 - /emoji-regex@8.0.0: 4274 - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 4275 - dev: false 4276 - 4277 - /emoji-regex@9.2.2: 4278 - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 4279 - dev: false 4280 - 4281 - /emojis-list@3.0.0: 4282 - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} 4283 - engines: {node: '>= 4'} 4284 - dev: false 4285 - 4286 - /encodeurl@1.0.2: 4287 - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 4288 - engines: {node: '>= 0.8'} 4289 - dev: false 4290 - 4291 - /enhanced-resolve@5.13.0: 4292 - resolution: {integrity: sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==} 4293 - engines: {node: '>=10.13.0'} 4294 - dependencies: 4295 - graceful-fs: 4.2.11 4296 - tapable: 2.2.1 4297 - dev: false 4298 - 4299 - /entities@2.2.0: 4300 - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} 4301 - dev: false 4302 - 4303 - /error-ex@1.3.2: 4304 - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 4305 - dependencies: 4306 - is-arrayish: 0.2.1 4307 - dev: false 4308 - 4309 - /error-stack-parser@2.1.4: 4310 - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} 4311 - dependencies: 4312 - stackframe: 1.3.4 4313 - dev: false 4314 - 4315 - /es-abstract@1.21.2: 4316 - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} 4317 - engines: {node: '>= 0.4'} 4318 - dependencies: 4319 - array-buffer-byte-length: 1.0.0 4320 - available-typed-arrays: 1.0.5 4321 - call-bind: 1.0.2 4322 - es-set-tostringtag: 2.0.1 4323 - es-to-primitive: 1.2.1 4324 - function.prototype.name: 1.1.5 4325 - get-intrinsic: 1.2.0 4326 - get-symbol-description: 1.0.0 4327 - globalthis: 1.0.3 4328 - gopd: 1.0.1 4329 - has: 1.0.3 4330 - has-property-descriptors: 1.0.0 4331 - has-proto: 1.0.1 4332 - has-symbols: 1.0.3 4333 - internal-slot: 1.0.5 4334 - is-array-buffer: 3.0.2 4335 - is-callable: 1.2.7 4336 - is-negative-zero: 2.0.2 4337 - is-regex: 1.1.4 4338 - is-shared-array-buffer: 1.0.2 4339 - is-string: 1.0.7 4340 - is-typed-array: 1.1.10 4341 - is-weakref: 1.0.2 4342 - object-inspect: 1.12.3 4343 - object-keys: 1.1.1 4344 - object.assign: 4.1.4 4345 - regexp.prototype.flags: 1.5.0 4346 - safe-regex-test: 1.0.0 4347 - string.prototype.trim: 1.2.7 4348 - string.prototype.trimend: 1.0.6 4349 - string.prototype.trimstart: 1.0.6 4350 - typed-array-length: 1.0.4 4351 - unbox-primitive: 1.0.2 4352 - which-typed-array: 1.1.9 4353 - dev: false 4354 - 4355 - /es-array-method-boxes-properly@1.0.0: 4356 - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} 4357 - dev: false 4358 - 4359 - /es-get-iterator@1.1.3: 4360 - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 4361 - dependencies: 4362 - call-bind: 1.0.2 4363 - get-intrinsic: 1.2.0 4364 - has-symbols: 1.0.3 4365 - is-arguments: 1.1.1 4366 - is-map: 2.0.2 4367 - is-set: 2.0.2 4368 - is-string: 1.0.7 4369 - isarray: 2.0.5 4370 - stop-iteration-iterator: 1.0.0 4371 - dev: false 4372 - 4373 - /es-module-lexer@1.2.1: 4374 - resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} 4375 - dev: false 4376 - 4377 - /es-set-tostringtag@2.0.1: 4378 - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 4379 - engines: {node: '>= 0.4'} 4380 - dependencies: 4381 - get-intrinsic: 1.2.0 4382 - has: 1.0.3 4383 - has-tostringtag: 1.0.0 4384 - dev: false 4385 - 4386 - /es-shim-unscopables@1.0.0: 4387 - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 4388 - dependencies: 4389 - has: 1.0.3 4390 - dev: false 4391 - 4392 - /es-to-primitive@1.2.1: 4393 - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 4394 - engines: {node: '>= 0.4'} 4395 - dependencies: 4396 - is-callable: 1.2.7 4397 - is-date-object: 1.0.5 4398 - is-symbol: 1.0.4 4399 - dev: false 4400 - 4401 - /escalade@3.1.1: 4402 - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 4403 - engines: {node: '>=6'} 4404 - dev: false 4405 - 4406 - /escape-html@1.0.3: 4407 - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 4408 - dev: false 4409 - 4410 - /escape-string-regexp@1.0.5: 4411 - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 4412 - engines: {node: '>=0.8.0'} 4413 - dev: false 4414 - 4415 - /escape-string-regexp@2.0.0: 4416 - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} 4417 - engines: {node: '>=8'} 4418 - dev: false 818 + requiresBuild: true 819 + optionalDependencies: 820 + '@esbuild/android-arm': 0.17.17 821 + '@esbuild/android-arm64': 0.17.17 822 + '@esbuild/android-x64': 0.17.17 823 + '@esbuild/darwin-arm64': 0.17.17 824 + '@esbuild/darwin-x64': 0.17.17 825 + '@esbuild/freebsd-arm64': 0.17.17 826 + '@esbuild/freebsd-x64': 0.17.17 827 + '@esbuild/linux-arm': 0.17.17 828 + '@esbuild/linux-arm64': 0.17.17 829 + '@esbuild/linux-ia32': 0.17.17 830 + '@esbuild/linux-loong64': 0.17.17 831 + '@esbuild/linux-mips64el': 0.17.17 832 + '@esbuild/linux-ppc64': 0.17.17 833 + '@esbuild/linux-riscv64': 0.17.17 834 + '@esbuild/linux-s390x': 0.17.17 835 + '@esbuild/linux-x64': 0.17.17 836 + '@esbuild/netbsd-x64': 0.17.17 837 + '@esbuild/openbsd-x64': 0.17.17 838 + '@esbuild/sunos-x64': 0.17.17 839 + '@esbuild/win32-arm64': 0.17.17 840 + '@esbuild/win32-ia32': 0.17.17 841 + '@esbuild/win32-x64': 0.17.17 842 + dev: true 4419 843 4420 844 /escape-string-regexp@4.0.0: 4421 845 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 4422 846 engines: {node: '>=10'} 4423 - 4424 - /escodegen@2.0.0: 4425 - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} 4426 - engines: {node: '>=6.0'} 4427 - hasBin: true 4428 - dependencies: 4429 - esprima: 4.0.1 4430 - estraverse: 5.3.0 4431 - esutils: 2.0.3 4432 - optionator: 0.8.3 4433 - optionalDependencies: 4434 - source-map: 0.6.1 4435 - dev: false 4436 - 4437 - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0)(jest@27.5.1)(typescript@4.9.5): 4438 - resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} 4439 - engines: {node: '>=14.0.0'} 4440 - peerDependencies: 4441 - eslint: ^8.0.0 4442 - typescript: '*' 4443 - peerDependenciesMeta: 4444 - typescript: 4445 - optional: true 4446 - dependencies: 4447 - '@babel/core': 7.21.4 4448 - '@babel/eslint-parser': 7.21.3(@babel/core@7.21.4)(eslint@8.38.0) 4449 - '@rushstack/eslint-patch': 1.2.0 4450 - '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) 4451 - '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 4452 - babel-preset-react-app: 10.0.1 4453 - confusing-browser-globals: 1.0.11 4454 - eslint: 8.38.0 4455 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0) 4456 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.58.0)(eslint@8.38.0) 4457 - eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.38.0)(jest@27.5.1)(typescript@4.9.5) 4458 - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.38.0) 4459 - eslint-plugin-react: 7.32.2(eslint@8.38.0) 4460 - eslint-plugin-react-hooks: 4.6.0(eslint@8.38.0) 4461 - eslint-plugin-testing-library: 5.10.3(eslint@8.38.0)(typescript@4.9.5) 4462 - typescript: 4.9.5 4463 - transitivePeerDependencies: 4464 - - '@babel/plugin-syntax-flow' 4465 - - '@babel/plugin-transform-react-jsx' 4466 - - eslint-import-resolver-typescript 4467 - - eslint-import-resolver-webpack 4468 - - jest 4469 - - supports-color 4470 - dev: false 4471 - 4472 - /eslint-import-resolver-node@0.3.7: 4473 - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 4474 - dependencies: 4475 - debug: 3.2.7 4476 - is-core-module: 2.12.0 4477 - resolve: 1.22.2 4478 - transitivePeerDependencies: 4479 - - supports-color 4480 - dev: false 4481 - 4482 - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint@8.38.0): 4483 - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 4484 - engines: {node: '>=4'} 4485 - peerDependencies: 4486 - '@typescript-eslint/parser': '*' 4487 - eslint: '*' 4488 - eslint-import-resolver-node: '*' 4489 - eslint-import-resolver-typescript: '*' 4490 - eslint-import-resolver-webpack: '*' 4491 - peerDependenciesMeta: 4492 - '@typescript-eslint/parser': 4493 - optional: true 4494 - eslint: 4495 - optional: true 4496 - eslint-import-resolver-node: 4497 - optional: true 4498 - eslint-import-resolver-typescript: 4499 - optional: true 4500 - eslint-import-resolver-webpack: 4501 - optional: true 4502 - dependencies: 4503 - '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 4504 - debug: 3.2.7 4505 - eslint: 8.38.0 4506 - eslint-import-resolver-node: 0.3.7 4507 - transitivePeerDependencies: 4508 - - supports-color 4509 - dev: false 4510 - 4511 - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0): 4512 - resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} 4513 - engines: {node: '>=12.0.0'} 4514 - peerDependencies: 4515 - '@babel/plugin-syntax-flow': ^7.14.5 4516 - '@babel/plugin-transform-react-jsx': ^7.14.9 4517 - eslint: ^8.1.0 4518 - dependencies: 4519 - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.4) 4520 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.4) 4521 - eslint: 8.38.0 4522 - lodash: 4.17.21 4523 - string-natural-compare: 3.0.1 4524 - dev: false 4525 - 4526 - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.58.0)(eslint@8.38.0): 4527 - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 4528 - engines: {node: '>=4'} 4529 - peerDependencies: 4530 - '@typescript-eslint/parser': '*' 4531 - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 4532 - peerDependenciesMeta: 4533 - '@typescript-eslint/parser': 4534 - optional: true 4535 - dependencies: 4536 - '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) 4537 - array-includes: 3.1.6 4538 - array.prototype.flat: 1.3.1 4539 - array.prototype.flatmap: 1.3.1 4540 - debug: 3.2.7 4541 - doctrine: 2.1.0 4542 - eslint: 8.38.0 4543 - eslint-import-resolver-node: 0.3.7 4544 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint@8.38.0) 4545 - has: 1.0.3 4546 - is-core-module: 2.12.0 4547 - is-glob: 4.0.3 4548 - minimatch: 3.1.2 4549 - object.values: 1.1.6 4550 - resolve: 1.22.2 4551 - semver: 6.3.0 4552 - tsconfig-paths: 3.14.2 4553 - transitivePeerDependencies: 4554 - - eslint-import-resolver-typescript 4555 - - eslint-import-resolver-webpack 4556 - - supports-color 4557 - dev: false 4558 - 4559 - /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.38.0)(jest@27.5.1)(typescript@4.9.5): 4560 - resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} 4561 - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} 4562 - peerDependencies: 4563 - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 4564 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 4565 - jest: '*' 4566 - peerDependenciesMeta: 4567 - '@typescript-eslint/eslint-plugin': 4568 - optional: true 4569 - jest: 4570 - optional: true 4571 - dependencies: 4572 - '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) 4573 - '@typescript-eslint/experimental-utils': 5.59.0(eslint@8.38.0)(typescript@4.9.5) 4574 - eslint: 8.38.0 4575 - jest: 27.5.1 4576 - transitivePeerDependencies: 4577 - - supports-color 4578 - - typescript 4579 - dev: false 4580 - 4581 - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.38.0): 4582 - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 4583 - engines: {node: '>=4.0'} 4584 - peerDependencies: 4585 - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 4586 - dependencies: 4587 - '@babel/runtime': 7.21.0 4588 - aria-query: 5.1.3 4589 - array-includes: 3.1.6 4590 - array.prototype.flatmap: 1.3.1 4591 - ast-types-flow: 0.0.7 4592 - axe-core: 4.7.0 4593 - axobject-query: 3.1.1 4594 - damerau-levenshtein: 1.0.8 4595 - emoji-regex: 9.2.2 4596 - eslint: 8.38.0 4597 - has: 1.0.3 4598 - jsx-ast-utils: 3.3.3 4599 - language-tags: 1.0.5 4600 - minimatch: 3.1.2 4601 - object.entries: 1.1.6 4602 - object.fromentries: 2.0.6 4603 - semver: 6.3.0 4604 - dev: false 847 + dev: true 4605 848 4606 849 /eslint-plugin-react-hooks@4.6.0(eslint@8.38.0): 4607 850 resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} ··· 4610 853 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 4611 854 dependencies: 4612 855 eslint: 8.38.0 4613 - dev: false 856 + dev: true 4614 857 4615 - /eslint-plugin-react@7.32.2(eslint@8.38.0): 4616 - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} 4617 - engines: {node: '>=4'} 858 + /eslint-plugin-react-refresh@0.3.4(eslint@8.38.0): 859 + resolution: {integrity: sha512-E0ViBglxSQAERBp6eTj5fPgtCRtDonnbCFiVQBhf4Dto2blJRxg1dFUMdMh7N6ljTI4UwPhHwYDQ3Dyo4m6bwA==} 4618 860 peerDependencies: 4619 - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 861 + eslint: '>=7' 4620 862 dependencies: 4621 - array-includes: 3.1.6 4622 - array.prototype.flatmap: 1.3.1 4623 - array.prototype.tosorted: 1.1.1 4624 - doctrine: 2.1.0 4625 863 eslint: 8.38.0 4626 - estraverse: 5.3.0 4627 - jsx-ast-utils: 3.3.3 4628 - minimatch: 3.1.2 4629 - object.entries: 1.1.6 4630 - object.fromentries: 2.0.6 4631 - object.hasown: 1.1.2 4632 - object.values: 1.1.6 4633 - prop-types: 15.8.1 4634 - resolve: 2.0.0-next.4 4635 - semver: 6.3.0 4636 - string.prototype.matchall: 4.0.8 4637 - dev: false 4638 - 4639 - /eslint-plugin-testing-library@5.10.3(eslint@8.38.0)(typescript@4.9.5): 4640 - resolution: {integrity: sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==} 4641 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} 4642 - peerDependencies: 4643 - eslint: ^7.5.0 || ^8.0.0 4644 - dependencies: 4645 - '@typescript-eslint/utils': 5.59.0(eslint@8.38.0)(typescript@4.9.5) 4646 - eslint: 8.38.0 4647 - transitivePeerDependencies: 4648 - - supports-color 4649 - - typescript 4650 - dev: false 864 + dev: true 4651 865 4652 866 /eslint-scope@5.1.1: 4653 867 resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} ··· 4655 869 dependencies: 4656 870 esrecurse: 4.3.0 4657 871 estraverse: 4.3.0 872 + dev: true 4658 873 4659 874 /eslint-scope@7.2.0: 4660 875 resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} ··· 4662 877 dependencies: 4663 878 esrecurse: 4.3.0 4664 879 estraverse: 5.3.0 4665 - 4666 - /eslint-visitor-keys@2.1.0: 4667 - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 4668 - engines: {node: '>=10'} 4669 - dev: false 880 + dev: true 4670 881 4671 882 /eslint-visitor-keys@3.4.0: 4672 883 resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} 4673 884 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4674 - 4675 - /eslint-webpack-plugin@3.2.0(eslint@8.38.0)(webpack@5.80.0): 4676 - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} 4677 - engines: {node: '>= 12.13.0'} 4678 - peerDependencies: 4679 - eslint: ^7.0.0 || ^8.0.0 4680 - webpack: ^5.0.0 4681 - dependencies: 4682 - '@types/eslint': 8.37.0 4683 - eslint: 8.38.0 4684 - jest-worker: 28.1.3 4685 - micromatch: 4.0.5 4686 - normalize-path: 3.0.0 4687 - schema-utils: 4.0.1 4688 - webpack: 5.80.0 4689 - dev: false 885 + dev: true 4690 886 4691 887 /eslint@8.38.0: 4692 888 resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==} ··· 4735 931 text-table: 0.2.0 4736 932 transitivePeerDependencies: 4737 933 - supports-color 934 + dev: true 4738 935 4739 936 /espree@9.5.1: 4740 937 resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} ··· 4743 940 acorn: 8.8.2 4744 941 acorn-jsx: 5.3.2(acorn@8.8.2) 4745 942 eslint-visitor-keys: 3.4.0 4746 - 4747 - /esprima@4.0.1: 4748 - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 4749 - engines: {node: '>=4'} 4750 - hasBin: true 4751 - dev: false 943 + dev: true 4752 944 4753 945 /esquery@1.5.0: 4754 946 resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 4755 947 engines: {node: '>=0.10'} 4756 948 dependencies: 4757 949 estraverse: 5.3.0 950 + dev: true 4758 951 4759 952 /esrecurse@4.3.0: 4760 953 resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 4761 954 engines: {node: '>=4.0'} 4762 955 dependencies: 4763 956 estraverse: 5.3.0 957 + dev: true 4764 958 4765 959 /estraverse@4.3.0: 4766 960 resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 4767 961 engines: {node: '>=4.0'} 962 + dev: true 4768 963 4769 964 /estraverse@5.3.0: 4770 965 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 4771 966 engines: {node: '>=4.0'} 4772 - 4773 - /estree-walker@1.0.1: 4774 - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} 4775 - dev: false 967 + dev: true 4776 968 4777 969 /esutils@2.0.3: 4778 970 resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 4779 971 engines: {node: '>=0.10.0'} 4780 - 4781 - /etag@1.8.1: 4782 - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 4783 - engines: {node: '>= 0.6'} 4784 - dev: false 4785 - 4786 - /eventemitter3@4.0.7: 4787 - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} 4788 - dev: false 4789 - 4790 - /events@3.3.0: 4791 - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 4792 - engines: {node: '>=0.8.x'} 4793 - dev: false 4794 - 4795 - /execa@5.1.1: 4796 - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 4797 - engines: {node: '>=10'} 4798 - dependencies: 4799 - cross-spawn: 7.0.3 4800 - get-stream: 6.0.1 4801 - human-signals: 2.1.0 4802 - is-stream: 2.0.1 4803 - merge-stream: 2.0.0 4804 - npm-run-path: 4.0.1 4805 - onetime: 5.1.2 4806 - signal-exit: 3.0.7 4807 - strip-final-newline: 2.0.0 4808 - dev: false 4809 - 4810 - /exit@0.1.2: 4811 - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} 4812 - engines: {node: '>= 0.8.0'} 4813 - dev: false 4814 - 4815 - /expect@27.5.1: 4816 - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} 4817 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 4818 - dependencies: 4819 - '@jest/types': 27.5.1 4820 - jest-get-type: 27.5.1 4821 - jest-matcher-utils: 27.5.1 4822 - jest-message-util: 27.5.1 4823 - dev: false 4824 - 4825 - /express@4.18.2: 4826 - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} 4827 - engines: {node: '>= 0.10.0'} 4828 - dependencies: 4829 - accepts: 1.3.8 4830 - array-flatten: 1.1.1 4831 - body-parser: 1.20.1 4832 - content-disposition: 0.5.4 4833 - content-type: 1.0.5 4834 - cookie: 0.5.0 4835 - cookie-signature: 1.0.6 4836 - debug: 2.6.9 4837 - depd: 2.0.0 4838 - encodeurl: 1.0.2 4839 - escape-html: 1.0.3 4840 - etag: 1.8.1 4841 - finalhandler: 1.2.0 4842 - fresh: 0.5.2 4843 - http-errors: 2.0.0 4844 - merge-descriptors: 1.0.1 4845 - methods: 1.1.2 4846 - on-finished: 2.4.1 4847 - parseurl: 1.3.3 4848 - path-to-regexp: 0.1.7 4849 - proxy-addr: 2.0.7 4850 - qs: 6.11.0 4851 - range-parser: 1.2.1 4852 - safe-buffer: 5.2.1 4853 - send: 0.18.0 4854 - serve-static: 1.15.0 4855 - setprototypeof: 1.2.0 4856 - statuses: 2.0.1 4857 - type-is: 1.6.18 4858 - utils-merge: 1.0.1 4859 - vary: 1.1.2 4860 - transitivePeerDependencies: 4861 - - supports-color 4862 - dev: false 972 + dev: true 4863 973 4864 974 /fast-deep-equal@3.1.3: 4865 975 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 976 + dev: true 4866 977 4867 978 /fast-glob@3.2.12: 4868 979 resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} ··· 4873 984 glob-parent: 5.1.2 4874 985 merge2: 1.4.1 4875 986 micromatch: 4.0.5 987 + dev: true 4876 988 4877 989 /fast-json-stable-stringify@2.1.0: 4878 990 resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 991 + dev: true 4879 992 4880 993 /fast-levenshtein@2.0.6: 4881 994 resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 995 + dev: true 4882 996 4883 997 /fastq@1.15.0: 4884 998 resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 4885 999 dependencies: 4886 1000 reusify: 1.0.4 4887 - 4888 - /faye-websocket@0.11.4: 4889 - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} 4890 - engines: {node: '>=0.8.0'} 4891 - dependencies: 4892 - websocket-driver: 0.7.4 4893 - dev: false 4894 - 4895 - /fb-watchman@2.0.2: 4896 - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} 4897 - dependencies: 4898 - bser: 2.1.1 4899 - dev: false 1001 + dev: true 4900 1002 4901 1003 /file-entry-cache@6.0.1: 4902 1004 resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 4903 1005 engines: {node: ^10.12.0 || >=12.0.0} 4904 1006 dependencies: 4905 1007 flat-cache: 3.0.4 4906 - 4907 - /file-loader@6.2.0(webpack@5.80.0): 4908 - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} 4909 - engines: {node: '>= 10.13.0'} 4910 - peerDependencies: 4911 - webpack: ^4.0.0 || ^5.0.0 4912 - dependencies: 4913 - loader-utils: 2.0.4 4914 - schema-utils: 3.1.2 4915 - webpack: 5.80.0 4916 - dev: false 4917 - 4918 - /filelist@1.0.4: 4919 - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} 4920 - dependencies: 4921 - minimatch: 5.1.6 4922 - dev: false 4923 - 4924 - /filesize@8.0.7: 4925 - resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} 4926 - engines: {node: '>= 0.4.0'} 4927 - dev: false 1008 + dev: true 4928 1009 4929 1010 /fill-range@7.0.1: 4930 1011 resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 4931 1012 engines: {node: '>=8'} 4932 1013 dependencies: 4933 1014 to-regex-range: 5.0.1 4934 - 4935 - /finalhandler@1.2.0: 4936 - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} 4937 - engines: {node: '>= 0.8'} 4938 - dependencies: 4939 - debug: 2.6.9 4940 - encodeurl: 1.0.2 4941 - escape-html: 1.0.3 4942 - on-finished: 2.4.1 4943 - parseurl: 1.3.3 4944 - statuses: 2.0.1 4945 - unpipe: 1.0.0 4946 - transitivePeerDependencies: 4947 - - supports-color 4948 - dev: false 4949 - 4950 - /find-cache-dir@3.3.2: 4951 - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} 4952 - engines: {node: '>=8'} 4953 - dependencies: 4954 - commondir: 1.0.1 4955 - make-dir: 3.1.0 4956 - pkg-dir: 4.2.0 4957 - dev: false 4958 - 4959 - /find-up@3.0.0: 4960 - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} 4961 - engines: {node: '>=6'} 4962 - dependencies: 4963 - locate-path: 3.0.0 4964 - dev: false 4965 - 4966 - /find-up@4.1.0: 4967 - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 4968 - engines: {node: '>=8'} 4969 - dependencies: 4970 - locate-path: 5.0.0 4971 - path-exists: 4.0.0 4972 - dev: false 1015 + dev: true 4973 1016 4974 1017 /find-up@5.0.0: 4975 1018 resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} ··· 4977 1020 dependencies: 4978 1021 locate-path: 6.0.0 4979 1022 path-exists: 4.0.0 1023 + dev: true 4980 1024 4981 1025 /flat-cache@3.0.4: 4982 1026 resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} ··· 4984 1028 dependencies: 4985 1029 flatted: 3.2.7 4986 1030 rimraf: 3.0.2 1031 + dev: true 4987 1032 4988 1033 /flatted@3.2.7: 4989 1034 resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 4990 - 4991 - /follow-redirects@1.15.2: 4992 - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 4993 - engines: {node: '>=4.0'} 4994 - peerDependencies: 4995 - debug: '*' 4996 - peerDependenciesMeta: 4997 - debug: 4998 - optional: true 4999 - dev: false 5000 - 5001 - /for-each@0.3.3: 5002 - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 5003 - dependencies: 5004 - is-callable: 1.2.7 5005 - dev: false 5006 - 5007 - /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.38.0)(typescript@4.9.5)(webpack@5.80.0): 5008 - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} 5009 - engines: {node: '>=10', yarn: '>=1.0.0'} 5010 - peerDependencies: 5011 - eslint: '>= 6' 5012 - typescript: '>= 2.7' 5013 - vue-template-compiler: '*' 5014 - webpack: '>= 4' 5015 - peerDependenciesMeta: 5016 - eslint: 5017 - optional: true 5018 - vue-template-compiler: 5019 - optional: true 5020 - dependencies: 5021 - '@babel/code-frame': 7.21.4 5022 - '@types/json-schema': 7.0.11 5023 - chalk: 4.1.2 5024 - chokidar: 3.5.3 5025 - cosmiconfig: 6.0.0 5026 - deepmerge: 4.3.1 5027 - eslint: 8.38.0 5028 - fs-extra: 9.1.0 5029 - glob: 7.2.3 5030 - memfs: 3.5.1 5031 - minimatch: 3.1.2 5032 - schema-utils: 2.7.0 5033 - semver: 7.5.0 5034 - tapable: 1.1.3 5035 - typescript: 4.9.5 5036 - webpack: 5.80.0 5037 - dev: false 5038 - 5039 - /form-data@3.0.1: 5040 - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} 5041 - engines: {node: '>= 6'} 5042 - dependencies: 5043 - asynckit: 0.4.0 5044 - combined-stream: 1.0.8 5045 - mime-types: 2.1.35 5046 - dev: false 5047 - 5048 - /forwarded@0.2.0: 5049 - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 5050 - engines: {node: '>= 0.6'} 5051 - dev: false 5052 - 5053 - /fraction.js@4.2.0: 5054 - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 5055 - dev: false 5056 - 5057 - /fresh@0.5.2: 5058 - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 5059 - engines: {node: '>= 0.6'} 5060 - dev: false 5061 - 5062 - /fs-extra@10.1.0: 5063 - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 5064 - engines: {node: '>=12'} 5065 - dependencies: 5066 - graceful-fs: 4.2.11 5067 - jsonfile: 6.1.0 5068 - universalify: 2.0.0 5069 - dev: false 5070 - 5071 - /fs-extra@9.1.0: 5072 - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} 5073 - engines: {node: '>=10'} 5074 - dependencies: 5075 - at-least-node: 1.0.0 5076 - graceful-fs: 4.2.11 5077 - jsonfile: 6.1.0 5078 - universalify: 2.0.0 5079 - dev: false 5080 - 5081 - /fs-monkey@1.0.3: 5082 - resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} 5083 - dev: false 1035 + dev: true 5084 1036 5085 1037 /fs.realpath@1.0.0: 5086 1038 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1039 + dev: true 5087 1040 5088 1041 /fsevents@2.3.2: 5089 1042 resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 5090 1043 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 5091 1044 os: [darwin] 5092 1045 requiresBuild: true 5093 - dev: false 1046 + dev: true 5094 1047 optional: true 5095 1048 5096 - /function-bind@1.1.1: 5097 - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 5098 - dev: false 5099 - 5100 - /function.prototype.name@1.1.5: 5101 - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 5102 - engines: {node: '>= 0.4'} 5103 - dependencies: 5104 - call-bind: 1.0.2 5105 - define-properties: 1.2.0 5106 - es-abstract: 1.21.2 5107 - functions-have-names: 1.2.3 5108 - dev: false 5109 - 5110 - /functions-have-names@1.2.3: 5111 - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 5112 - dev: false 5113 - 5114 - /gensync@1.0.0-beta.2: 5115 - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 5116 - engines: {node: '>=6.9.0'} 5117 - dev: false 5118 - 5119 - /get-caller-file@2.0.5: 5120 - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 5121 - engines: {node: 6.* || 8.* || >= 10.*} 5122 - dev: false 5123 - 5124 - /get-intrinsic@1.2.0: 5125 - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} 5126 - dependencies: 5127 - function-bind: 1.1.1 5128 - has: 1.0.3 5129 - has-symbols: 1.0.3 5130 - dev: false 5131 - 5132 - /get-own-enumerable-property-symbols@3.0.2: 5133 - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} 5134 - dev: false 5135 - 5136 - /get-package-type@0.1.0: 5137 - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} 5138 - engines: {node: '>=8.0.0'} 5139 - dev: false 5140 - 5141 - /get-stream@6.0.1: 5142 - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 5143 - engines: {node: '>=10'} 5144 - dev: false 5145 - 5146 - /get-symbol-description@1.0.0: 5147 - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 5148 - engines: {node: '>= 0.4'} 5149 - dependencies: 5150 - call-bind: 1.0.2 5151 - get-intrinsic: 1.2.0 5152 - dev: false 5153 - 5154 1049 /glob-parent@5.1.2: 5155 1050 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 5156 1051 engines: {node: '>= 6'} 5157 1052 dependencies: 5158 1053 is-glob: 4.0.3 1054 + dev: true 5159 1055 5160 1056 /glob-parent@6.0.2: 5161 1057 resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 5162 1058 engines: {node: '>=10.13.0'} 5163 1059 dependencies: 5164 1060 is-glob: 4.0.3 5165 - 5166 - /glob-to-regexp@0.4.1: 5167 - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 5168 - dev: false 5169 - 5170 - /glob@7.1.6: 5171 - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 5172 - dependencies: 5173 - fs.realpath: 1.0.0 5174 - inflight: 1.0.6 5175 - inherits: 2.0.4 5176 - minimatch: 3.1.2 5177 - once: 1.4.0 5178 - path-is-absolute: 1.0.1 5179 - dev: false 1061 + dev: true 5180 1062 5181 1063 /glob@7.2.3: 5182 1064 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} ··· 5187 1069 minimatch: 3.1.2 5188 1070 once: 1.4.0 5189 1071 path-is-absolute: 1.0.1 5190 - 5191 - /global-modules@2.0.0: 5192 - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} 5193 - engines: {node: '>=6'} 5194 - dependencies: 5195 - global-prefix: 3.0.0 5196 - dev: false 5197 - 5198 - /global-prefix@3.0.0: 5199 - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} 5200 - engines: {node: '>=6'} 5201 - dependencies: 5202 - ini: 1.3.8 5203 - kind-of: 6.0.3 5204 - which: 1.3.1 5205 - dev: false 5206 - 5207 - /globals@11.12.0: 5208 - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 5209 - engines: {node: '>=4'} 5210 - dev: false 1072 + dev: true 5211 1073 5212 1074 /globals@13.20.0: 5213 1075 resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 5214 1076 engines: {node: '>=8'} 5215 1077 dependencies: 5216 1078 type-fest: 0.20.2 5217 - 5218 - /globalthis@1.0.3: 5219 - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 5220 - engines: {node: '>= 0.4'} 5221 - dependencies: 5222 - define-properties: 1.2.0 5223 - dev: false 1079 + dev: true 5224 1080 5225 1081 /globby@11.1.0: 5226 1082 resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} ··· 5232 1088 ignore: 5.2.4 5233 1089 merge2: 1.4.1 5234 1090 slash: 3.0.0 5235 - 5236 - /gopd@1.0.1: 5237 - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 5238 - dependencies: 5239 - get-intrinsic: 1.2.0 5240 - dev: false 5241 - 5242 - /graceful-fs@4.2.11: 5243 - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 5244 - dev: false 1091 + dev: true 5245 1092 5246 1093 /grapheme-splitter@1.0.4: 5247 1094 resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 5248 - 5249 - /gzip-size@6.0.0: 5250 - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} 5251 - engines: {node: '>=10'} 5252 - dependencies: 5253 - duplexer: 0.1.2 5254 - dev: false 5255 - 5256 - /handle-thing@2.0.1: 5257 - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} 5258 - dev: false 5259 - 5260 - /harmony-reflect@1.6.2: 5261 - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} 5262 - dev: false 5263 - 5264 - /has-bigints@1.0.2: 5265 - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 5266 - dev: false 5267 - 5268 - /has-flag@3.0.0: 5269 - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 5270 - engines: {node: '>=4'} 5271 - dev: false 1095 + dev: true 5272 1096 5273 1097 /has-flag@4.0.0: 5274 1098 resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 5275 1099 engines: {node: '>=8'} 5276 - 5277 - /has-property-descriptors@1.0.0: 5278 - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 5279 - dependencies: 5280 - get-intrinsic: 1.2.0 5281 - dev: false 5282 - 5283 - /has-proto@1.0.1: 5284 - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 5285 - engines: {node: '>= 0.4'} 5286 - dev: false 5287 - 5288 - /has-symbols@1.0.3: 5289 - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 5290 - engines: {node: '>= 0.4'} 5291 - dev: false 5292 - 5293 - /has-tostringtag@1.0.0: 5294 - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 5295 - engines: {node: '>= 0.4'} 5296 - dependencies: 5297 - has-symbols: 1.0.3 5298 - dev: false 5299 - 5300 - /has@1.0.3: 5301 - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 5302 - engines: {node: '>= 0.4.0'} 5303 - dependencies: 5304 - function-bind: 1.1.1 5305 - dev: false 5306 - 5307 - /he@1.2.0: 5308 - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} 5309 - hasBin: true 5310 - dev: false 5311 - 5312 - /hoopy@0.1.4: 5313 - resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==} 5314 - engines: {node: '>= 6.0.0'} 5315 - dev: false 5316 - 5317 - /hpack.js@2.1.6: 5318 - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} 5319 - dependencies: 5320 - inherits: 2.0.4 5321 - obuf: 1.1.2 5322 - readable-stream: 2.3.8 5323 - wbuf: 1.7.3 5324 - dev: false 5325 - 5326 - /html-encoding-sniffer@2.0.1: 5327 - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} 5328 - engines: {node: '>=10'} 5329 - dependencies: 5330 - whatwg-encoding: 1.0.5 5331 - dev: false 5332 - 5333 - /html-entities@2.3.3: 5334 - resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} 5335 - dev: false 5336 - 5337 - /html-escaper@2.0.2: 5338 - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 5339 - dev: false 5340 - 5341 - /html-minifier-terser@6.1.0: 5342 - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} 5343 - engines: {node: '>=12'} 5344 - hasBin: true 5345 - dependencies: 5346 - camel-case: 4.1.2 5347 - clean-css: 5.3.2 5348 - commander: 8.3.0 5349 - he: 1.2.0 5350 - param-case: 3.0.4 5351 - relateurl: 0.2.7 5352 - terser: 5.17.1 5353 - dev: false 5354 - 5355 - /html-webpack-plugin@5.5.1(webpack@5.80.0): 5356 - resolution: {integrity: sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==} 5357 - engines: {node: '>=10.13.0'} 5358 - peerDependencies: 5359 - webpack: ^5.20.0 5360 - dependencies: 5361 - '@types/html-minifier-terser': 6.1.0 5362 - html-minifier-terser: 6.1.0 5363 - lodash: 4.17.21 5364 - pretty-error: 4.0.0 5365 - tapable: 2.2.1 5366 - webpack: 5.80.0 5367 - dev: false 5368 - 5369 - /htmlparser2@6.1.0: 5370 - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} 5371 - dependencies: 5372 - domelementtype: 2.3.0 5373 - domhandler: 4.3.1 5374 - domutils: 2.8.0 5375 - entities: 2.2.0 5376 - dev: false 5377 - 5378 - /http-deceiver@1.2.7: 5379 - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} 5380 - dev: false 5381 - 5382 - /http-errors@1.6.3: 5383 - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} 5384 - engines: {node: '>= 0.6'} 5385 - dependencies: 5386 - depd: 1.1.2 5387 - inherits: 2.0.3 5388 - setprototypeof: 1.1.0 5389 - statuses: 1.5.0 5390 - dev: false 5391 - 5392 - /http-errors@2.0.0: 5393 - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 5394 - engines: {node: '>= 0.8'} 5395 - dependencies: 5396 - depd: 2.0.0 5397 - inherits: 2.0.4 5398 - setprototypeof: 1.2.0 5399 - statuses: 2.0.1 5400 - toidentifier: 1.0.1 5401 - dev: false 5402 - 5403 - /http-parser-js@0.5.8: 5404 - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} 5405 - dev: false 5406 - 5407 - /http-proxy-agent@4.0.1: 5408 - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} 5409 - engines: {node: '>= 6'} 5410 - dependencies: 5411 - '@tootallnate/once': 1.1.2 5412 - agent-base: 6.0.2 5413 - debug: 4.3.4 5414 - transitivePeerDependencies: 5415 - - supports-color 5416 - dev: false 5417 - 5418 - /http-proxy-middleware@2.0.6(@types/express@4.17.17): 5419 - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} 5420 - engines: {node: '>=12.0.0'} 5421 - peerDependencies: 5422 - '@types/express': ^4.17.13 5423 - peerDependenciesMeta: 5424 - '@types/express': 5425 - optional: true 5426 - dependencies: 5427 - '@types/express': 4.17.17 5428 - '@types/http-proxy': 1.17.10 5429 - http-proxy: 1.18.1 5430 - is-glob: 4.0.3 5431 - is-plain-obj: 3.0.0 5432 - micromatch: 4.0.5 5433 - transitivePeerDependencies: 5434 - - debug 5435 - dev: false 5436 - 5437 - /http-proxy@1.18.1: 5438 - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} 5439 - engines: {node: '>=8.0.0'} 5440 - dependencies: 5441 - eventemitter3: 4.0.7 5442 - follow-redirects: 1.15.2 5443 - requires-port: 1.0.0 5444 - transitivePeerDependencies: 5445 - - debug 5446 - dev: false 5447 - 5448 - /https-proxy-agent@5.0.1: 5449 - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} 5450 - engines: {node: '>= 6'} 5451 - dependencies: 5452 - agent-base: 6.0.2 5453 - debug: 4.3.4 5454 - transitivePeerDependencies: 5455 - - supports-color 5456 - dev: false 5457 - 5458 - /human-signals@2.1.0: 5459 - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 5460 - engines: {node: '>=10.17.0'} 5461 - dev: false 5462 - 5463 - /iconv-lite@0.4.24: 5464 - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 5465 - engines: {node: '>=0.10.0'} 5466 - dependencies: 5467 - safer-buffer: 2.1.2 5468 - dev: false 5469 - 5470 - /iconv-lite@0.6.3: 5471 - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 5472 - engines: {node: '>=0.10.0'} 5473 - dependencies: 5474 - safer-buffer: 2.1.2 5475 - dev: false 5476 - 5477 - /icss-utils@5.1.0(postcss@8.4.23): 5478 - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} 5479 - engines: {node: ^10 || ^12 || >= 14} 5480 - peerDependencies: 5481 - postcss: ^8.1.0 5482 - dependencies: 5483 - postcss: 8.4.23 5484 - dev: false 5485 - 5486 - /idb@7.1.1: 5487 - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} 5488 - dev: false 5489 - 5490 - /identity-obj-proxy@3.0.0: 5491 - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} 5492 - engines: {node: '>=4'} 5493 - dependencies: 5494 - harmony-reflect: 1.6.2 5495 - dev: false 1100 + dev: true 5496 1101 5497 1102 /ignore@5.2.4: 5498 1103 resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 5499 1104 engines: {node: '>= 4'} 5500 - 5501 - /immer@9.0.21: 5502 - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} 5503 - dev: false 1105 + dev: true 5504 1106 5505 1107 /import-fresh@3.3.0: 5506 1108 resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} ··· 5508 1110 dependencies: 5509 1111 parent-module: 1.0.1 5510 1112 resolve-from: 4.0.0 5511 - 5512 - /import-local@3.1.0: 5513 - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} 5514 - engines: {node: '>=8'} 5515 - hasBin: true 5516 - dependencies: 5517 - pkg-dir: 4.2.0 5518 - resolve-cwd: 3.0.0 5519 - dev: false 1113 + dev: true 5520 1114 5521 1115 /imurmurhash@0.1.4: 5522 1116 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 5523 1117 engines: {node: '>=0.8.19'} 1118 + dev: true 5524 1119 5525 1120 /inflight@1.0.6: 5526 1121 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 5527 1122 dependencies: 5528 1123 once: 1.4.0 5529 1124 wrappy: 1.0.2 5530 - 5531 - /inherits@2.0.3: 5532 - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} 5533 - dev: false 1125 + dev: true 5534 1126 5535 1127 /inherits@2.0.4: 5536 1128 resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 5537 - 5538 - /ini@1.3.8: 5539 - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 5540 - dev: false 5541 - 5542 - /internal-slot@1.0.5: 5543 - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 5544 - engines: {node: '>= 0.4'} 5545 - dependencies: 5546 - get-intrinsic: 1.2.0 5547 - has: 1.0.3 5548 - side-channel: 1.0.4 5549 - dev: false 5550 - 5551 - /ipaddr.js@1.9.1: 5552 - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 5553 - engines: {node: '>= 0.10'} 5554 - dev: false 5555 - 5556 - /ipaddr.js@2.0.1: 5557 - resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==} 5558 - engines: {node: '>= 10'} 5559 - dev: false 5560 - 5561 - /is-arguments@1.1.1: 5562 - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 5563 - engines: {node: '>= 0.4'} 5564 - dependencies: 5565 - call-bind: 1.0.2 5566 - has-tostringtag: 1.0.0 5567 - dev: false 5568 - 5569 - /is-array-buffer@3.0.2: 5570 - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 5571 - dependencies: 5572 - call-bind: 1.0.2 5573 - get-intrinsic: 1.2.0 5574 - is-typed-array: 1.1.10 5575 - dev: false 5576 - 5577 - /is-arrayish@0.2.1: 5578 - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 5579 - dev: false 5580 - 5581 - /is-bigint@1.0.4: 5582 - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 5583 - dependencies: 5584 - has-bigints: 1.0.2 5585 - dev: false 5586 - 5587 - /is-binary-path@2.1.0: 5588 - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 5589 - engines: {node: '>=8'} 5590 - dependencies: 5591 - binary-extensions: 2.2.0 5592 - dev: false 5593 - 5594 - /is-boolean-object@1.1.2: 5595 - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 5596 - engines: {node: '>= 0.4'} 5597 - dependencies: 5598 - call-bind: 1.0.2 5599 - has-tostringtag: 1.0.0 5600 - dev: false 5601 - 5602 - /is-callable@1.2.7: 5603 - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 5604 - engines: {node: '>= 0.4'} 5605 - dev: false 5606 - 5607 - /is-core-module@2.12.0: 5608 - resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} 5609 - dependencies: 5610 - has: 1.0.3 5611 - dev: false 5612 - 5613 - /is-date-object@1.0.5: 5614 - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 5615 - engines: {node: '>= 0.4'} 5616 - dependencies: 5617 - has-tostringtag: 1.0.0 5618 - dev: false 5619 - 5620 - /is-docker@2.2.1: 5621 - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 5622 - engines: {node: '>=8'} 5623 - hasBin: true 5624 - dev: false 1129 + dev: true 5625 1130 5626 1131 /is-extglob@2.1.1: 5627 1132 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 5628 1133 engines: {node: '>=0.10.0'} 5629 - 5630 - /is-fullwidth-code-point@3.0.0: 5631 - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 5632 - engines: {node: '>=8'} 5633 - dev: false 5634 - 5635 - /is-generator-fn@2.1.0: 5636 - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} 5637 - engines: {node: '>=6'} 5638 - dev: false 1134 + dev: true 5639 1135 5640 1136 /is-glob@4.0.3: 5641 1137 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 5642 1138 engines: {node: '>=0.10.0'} 5643 1139 dependencies: 5644 1140 is-extglob: 2.1.1 5645 - 5646 - /is-map@2.0.2: 5647 - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 5648 - dev: false 5649 - 5650 - /is-module@1.0.0: 5651 - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 5652 - dev: false 5653 - 5654 - /is-negative-zero@2.0.2: 5655 - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 5656 - engines: {node: '>= 0.4'} 5657 - dev: false 5658 - 5659 - /is-number-object@1.0.7: 5660 - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 5661 - engines: {node: '>= 0.4'} 5662 - dependencies: 5663 - has-tostringtag: 1.0.0 5664 - dev: false 1141 + dev: true 5665 1142 5666 1143 /is-number@7.0.0: 5667 1144 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 5668 1145 engines: {node: '>=0.12.0'} 5669 - 5670 - /is-obj@1.0.1: 5671 - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} 5672 - engines: {node: '>=0.10.0'} 5673 - dev: false 1146 + dev: true 5674 1147 5675 1148 /is-path-inside@3.0.3: 5676 1149 resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 5677 1150 engines: {node: '>=8'} 5678 - 5679 - /is-plain-obj@3.0.0: 5680 - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} 5681 - engines: {node: '>=10'} 5682 - dev: false 5683 - 5684 - /is-potential-custom-element-name@1.0.1: 5685 - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 5686 - dev: false 5687 - 5688 - /is-regex@1.1.4: 5689 - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 5690 - engines: {node: '>= 0.4'} 5691 - dependencies: 5692 - call-bind: 1.0.2 5693 - has-tostringtag: 1.0.0 5694 - dev: false 5695 - 5696 - /is-regexp@1.0.0: 5697 - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} 5698 - engines: {node: '>=0.10.0'} 5699 - dev: false 5700 - 5701 - /is-root@2.1.0: 5702 - resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} 5703 - engines: {node: '>=6'} 5704 - dev: false 5705 - 5706 - /is-set@2.0.2: 5707 - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 5708 - dev: false 5709 - 5710 - /is-shared-array-buffer@1.0.2: 5711 - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 5712 - dependencies: 5713 - call-bind: 1.0.2 5714 - dev: false 5715 - 5716 - /is-stream@2.0.1: 5717 - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 5718 - engines: {node: '>=8'} 5719 - dev: false 5720 - 5721 - /is-string@1.0.7: 5722 - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 5723 - engines: {node: '>= 0.4'} 5724 - dependencies: 5725 - has-tostringtag: 1.0.0 5726 - dev: false 5727 - 5728 - /is-symbol@1.0.4: 5729 - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 5730 - engines: {node: '>= 0.4'} 5731 - dependencies: 5732 - has-symbols: 1.0.3 5733 - dev: false 5734 - 5735 - /is-typed-array@1.1.10: 5736 - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 5737 - engines: {node: '>= 0.4'} 5738 - dependencies: 5739 - available-typed-arrays: 1.0.5 5740 - call-bind: 1.0.2 5741 - for-each: 0.3.3 5742 - gopd: 1.0.1 5743 - has-tostringtag: 1.0.0 5744 - dev: false 5745 - 5746 - /is-typedarray@1.0.0: 5747 - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 5748 - dev: false 5749 - 5750 - /is-weakmap@2.0.1: 5751 - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 5752 - dev: false 5753 - 5754 - /is-weakref@1.0.2: 5755 - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 5756 - dependencies: 5757 - call-bind: 1.0.2 5758 - dev: false 5759 - 5760 - /is-weakset@2.0.2: 5761 - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 5762 - dependencies: 5763 - call-bind: 1.0.2 5764 - get-intrinsic: 1.2.0 5765 - dev: false 5766 - 5767 - /is-wsl@2.2.0: 5768 - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 5769 - engines: {node: '>=8'} 5770 - dependencies: 5771 - is-docker: 2.2.1 5772 - dev: false 5773 - 5774 - /isarray@1.0.0: 5775 - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 5776 - dev: false 5777 - 5778 - /isarray@2.0.5: 5779 - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 5780 - dev: false 1151 + dev: true 5781 1152 5782 1153 /isexe@2.0.0: 5783 1154 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1155 + dev: true 5784 1156 5785 1157 /iso-datestring-validator@2.2.2: 5786 1158 resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} 5787 1159 dev: false 5788 1160 5789 - /istanbul-lib-coverage@3.2.0: 5790 - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} 5791 - engines: {node: '>=8'} 5792 - dev: false 5793 - 5794 - /istanbul-lib-instrument@5.2.1: 5795 - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} 5796 - engines: {node: '>=8'} 5797 - dependencies: 5798 - '@babel/core': 7.21.4 5799 - '@babel/parser': 7.21.4 5800 - '@istanbuljs/schema': 0.1.3 5801 - istanbul-lib-coverage: 3.2.0 5802 - semver: 6.3.0 5803 - transitivePeerDependencies: 5804 - - supports-color 5805 - dev: false 5806 - 5807 - /istanbul-lib-report@3.0.0: 5808 - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} 5809 - engines: {node: '>=8'} 5810 - dependencies: 5811 - istanbul-lib-coverage: 3.2.0 5812 - make-dir: 3.1.0 5813 - supports-color: 7.2.0 5814 - dev: false 5815 - 5816 - /istanbul-lib-source-maps@4.0.1: 5817 - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} 5818 - engines: {node: '>=10'} 5819 - dependencies: 5820 - debug: 4.3.4 5821 - istanbul-lib-coverage: 3.2.0 5822 - source-map: 0.6.1 5823 - transitivePeerDependencies: 5824 - - supports-color 5825 - dev: false 5826 - 5827 - /istanbul-reports@3.1.5: 5828 - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} 5829 - engines: {node: '>=8'} 5830 - dependencies: 5831 - html-escaper: 2.0.2 5832 - istanbul-lib-report: 3.0.0 5833 - dev: false 5834 - 5835 - /jake@10.8.5: 5836 - resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} 5837 - engines: {node: '>=10'} 5838 - hasBin: true 5839 - dependencies: 5840 - async: 3.2.4 5841 - chalk: 4.1.2 5842 - filelist: 1.0.4 5843 - minimatch: 3.1.2 5844 - dev: false 5845 - 5846 - /jest-changed-files@27.5.1: 5847 - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} 5848 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5849 - dependencies: 5850 - '@jest/types': 27.5.1 5851 - execa: 5.1.1 5852 - throat: 6.0.2 5853 - dev: false 5854 - 5855 - /jest-circus@27.5.1: 5856 - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} 5857 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5858 - dependencies: 5859 - '@jest/environment': 27.5.1 5860 - '@jest/test-result': 27.5.1 5861 - '@jest/types': 27.5.1 5862 - '@types/node': 18.15.13 5863 - chalk: 4.1.2 5864 - co: 4.6.0 5865 - dedent: 0.7.0 5866 - expect: 27.5.1 5867 - is-generator-fn: 2.1.0 5868 - jest-each: 27.5.1 5869 - jest-matcher-utils: 27.5.1 5870 - jest-message-util: 27.5.1 5871 - jest-runtime: 27.5.1 5872 - jest-snapshot: 27.5.1 5873 - jest-util: 27.5.1 5874 - pretty-format: 27.5.1 5875 - slash: 3.0.0 5876 - stack-utils: 2.0.6 5877 - throat: 6.0.2 5878 - transitivePeerDependencies: 5879 - - supports-color 5880 - dev: false 5881 - 5882 - /jest-cli@27.5.1: 5883 - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} 5884 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5885 - hasBin: true 5886 - peerDependencies: 5887 - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 5888 - peerDependenciesMeta: 5889 - node-notifier: 5890 - optional: true 5891 - dependencies: 5892 - '@jest/core': 27.5.1 5893 - '@jest/test-result': 27.5.1 5894 - '@jest/types': 27.5.1 5895 - chalk: 4.1.2 5896 - exit: 0.1.2 5897 - graceful-fs: 4.2.11 5898 - import-local: 3.1.0 5899 - jest-config: 27.5.1 5900 - jest-util: 27.5.1 5901 - jest-validate: 27.5.1 5902 - prompts: 2.4.2 5903 - yargs: 16.2.0 5904 - transitivePeerDependencies: 5905 - - bufferutil 5906 - - canvas 5907 - - supports-color 5908 - - ts-node 5909 - - utf-8-validate 5910 - dev: false 5911 - 5912 - /jest-config@27.5.1: 5913 - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} 5914 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5915 - peerDependencies: 5916 - ts-node: '>=9.0.0' 5917 - peerDependenciesMeta: 5918 - ts-node: 5919 - optional: true 5920 - dependencies: 5921 - '@babel/core': 7.21.4 5922 - '@jest/test-sequencer': 27.5.1 5923 - '@jest/types': 27.5.1 5924 - babel-jest: 27.5.1(@babel/core@7.21.4) 5925 - chalk: 4.1.2 5926 - ci-info: 3.8.0 5927 - deepmerge: 4.3.1 5928 - glob: 7.2.3 5929 - graceful-fs: 4.2.11 5930 - jest-circus: 27.5.1 5931 - jest-environment-jsdom: 27.5.1 5932 - jest-environment-node: 27.5.1 5933 - jest-get-type: 27.5.1 5934 - jest-jasmine2: 27.5.1 5935 - jest-regex-util: 27.5.1 5936 - jest-resolve: 27.5.1 5937 - jest-runner: 27.5.1 5938 - jest-util: 27.5.1 5939 - jest-validate: 27.5.1 5940 - micromatch: 4.0.5 5941 - parse-json: 5.2.0 5942 - pretty-format: 27.5.1 5943 - slash: 3.0.0 5944 - strip-json-comments: 3.1.1 5945 - transitivePeerDependencies: 5946 - - bufferutil 5947 - - canvas 5948 - - supports-color 5949 - - utf-8-validate 5950 - dev: false 5951 - 5952 - /jest-diff@27.5.1: 5953 - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} 5954 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5955 - dependencies: 5956 - chalk: 4.1.2 5957 - diff-sequences: 27.5.1 5958 - jest-get-type: 27.5.1 5959 - pretty-format: 27.5.1 5960 - dev: false 5961 - 5962 - /jest-docblock@27.5.1: 5963 - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} 5964 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5965 - dependencies: 5966 - detect-newline: 3.1.0 5967 - dev: false 5968 - 5969 - /jest-each@27.5.1: 5970 - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} 5971 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5972 - dependencies: 5973 - '@jest/types': 27.5.1 5974 - chalk: 4.1.2 5975 - jest-get-type: 27.5.1 5976 - jest-util: 27.5.1 5977 - pretty-format: 27.5.1 5978 - dev: false 5979 - 5980 - /jest-environment-jsdom@27.5.1: 5981 - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} 5982 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 5983 - dependencies: 5984 - '@jest/environment': 27.5.1 5985 - '@jest/fake-timers': 27.5.1 5986 - '@jest/types': 27.5.1 5987 - '@types/node': 18.15.13 5988 - jest-mock: 27.5.1 5989 - jest-util: 27.5.1 5990 - jsdom: 16.7.0 5991 - transitivePeerDependencies: 5992 - - bufferutil 5993 - - canvas 5994 - - supports-color 5995 - - utf-8-validate 5996 - dev: false 5997 - 5998 - /jest-environment-node@27.5.1: 5999 - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} 6000 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6001 - dependencies: 6002 - '@jest/environment': 27.5.1 6003 - '@jest/fake-timers': 27.5.1 6004 - '@jest/types': 27.5.1 6005 - '@types/node': 18.15.13 6006 - jest-mock: 27.5.1 6007 - jest-util: 27.5.1 6008 - dev: false 6009 - 6010 - /jest-get-type@27.5.1: 6011 - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} 6012 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6013 - dev: false 6014 - 6015 - /jest-haste-map@27.5.1: 6016 - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} 6017 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6018 - dependencies: 6019 - '@jest/types': 27.5.1 6020 - '@types/graceful-fs': 4.1.6 6021 - '@types/node': 18.15.13 6022 - anymatch: 3.1.3 6023 - fb-watchman: 2.0.2 6024 - graceful-fs: 4.2.11 6025 - jest-regex-util: 27.5.1 6026 - jest-serializer: 27.5.1 6027 - jest-util: 27.5.1 6028 - jest-worker: 27.5.1 6029 - micromatch: 4.0.5 6030 - walker: 1.0.8 6031 - optionalDependencies: 6032 - fsevents: 2.3.2 6033 - dev: false 6034 - 6035 - /jest-jasmine2@27.5.1: 6036 - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} 6037 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6038 - dependencies: 6039 - '@jest/environment': 27.5.1 6040 - '@jest/source-map': 27.5.1 6041 - '@jest/test-result': 27.5.1 6042 - '@jest/types': 27.5.1 6043 - '@types/node': 18.15.13 6044 - chalk: 4.1.2 6045 - co: 4.6.0 6046 - expect: 27.5.1 6047 - is-generator-fn: 2.1.0 6048 - jest-each: 27.5.1 6049 - jest-matcher-utils: 27.5.1 6050 - jest-message-util: 27.5.1 6051 - jest-runtime: 27.5.1 6052 - jest-snapshot: 27.5.1 6053 - jest-util: 27.5.1 6054 - pretty-format: 27.5.1 6055 - throat: 6.0.2 6056 - transitivePeerDependencies: 6057 - - supports-color 6058 - dev: false 6059 - 6060 - /jest-leak-detector@27.5.1: 6061 - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} 6062 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6063 - dependencies: 6064 - jest-get-type: 27.5.1 6065 - pretty-format: 27.5.1 6066 - dev: false 6067 - 6068 - /jest-matcher-utils@27.5.1: 6069 - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} 6070 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6071 - dependencies: 6072 - chalk: 4.1.2 6073 - jest-diff: 27.5.1 6074 - jest-get-type: 27.5.1 6075 - pretty-format: 27.5.1 6076 - dev: false 6077 - 6078 - /jest-message-util@27.5.1: 6079 - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} 6080 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6081 - dependencies: 6082 - '@babel/code-frame': 7.21.4 6083 - '@jest/types': 27.5.1 6084 - '@types/stack-utils': 2.0.1 6085 - chalk: 4.1.2 6086 - graceful-fs: 4.2.11 6087 - micromatch: 4.0.5 6088 - pretty-format: 27.5.1 6089 - slash: 3.0.0 6090 - stack-utils: 2.0.6 6091 - dev: false 6092 - 6093 - /jest-message-util@28.1.3: 6094 - resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} 6095 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 6096 - dependencies: 6097 - '@babel/code-frame': 7.21.4 6098 - '@jest/types': 28.1.3 6099 - '@types/stack-utils': 2.0.1 6100 - chalk: 4.1.2 6101 - graceful-fs: 4.2.11 6102 - micromatch: 4.0.5 6103 - pretty-format: 28.1.3 6104 - slash: 3.0.0 6105 - stack-utils: 2.0.6 6106 - dev: false 6107 - 6108 - /jest-mock@27.5.1: 6109 - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} 6110 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6111 - dependencies: 6112 - '@jest/types': 27.5.1 6113 - '@types/node': 18.15.13 6114 - dev: false 6115 - 6116 - /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): 6117 - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} 6118 - engines: {node: '>=6'} 6119 - peerDependencies: 6120 - jest-resolve: '*' 6121 - peerDependenciesMeta: 6122 - jest-resolve: 6123 - optional: true 6124 - dependencies: 6125 - jest-resolve: 27.5.1 6126 - dev: false 6127 - 6128 - /jest-regex-util@27.5.1: 6129 - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} 6130 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6131 - dev: false 6132 - 6133 - /jest-regex-util@28.0.2: 6134 - resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} 6135 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 6136 - dev: false 6137 - 6138 - /jest-resolve-dependencies@27.5.1: 6139 - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} 6140 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6141 - dependencies: 6142 - '@jest/types': 27.5.1 6143 - jest-regex-util: 27.5.1 6144 - jest-snapshot: 27.5.1 6145 - transitivePeerDependencies: 6146 - - supports-color 6147 - dev: false 6148 - 6149 - /jest-resolve@27.5.1: 6150 - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} 6151 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6152 - dependencies: 6153 - '@jest/types': 27.5.1 6154 - chalk: 4.1.2 6155 - graceful-fs: 4.2.11 6156 - jest-haste-map: 27.5.1 6157 - jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) 6158 - jest-util: 27.5.1 6159 - jest-validate: 27.5.1 6160 - resolve: 1.22.2 6161 - resolve.exports: 1.1.1 6162 - slash: 3.0.0 6163 - dev: false 6164 - 6165 - /jest-runner@27.5.1: 6166 - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} 6167 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6168 - dependencies: 6169 - '@jest/console': 27.5.1 6170 - '@jest/environment': 27.5.1 6171 - '@jest/test-result': 27.5.1 6172 - '@jest/transform': 27.5.1 6173 - '@jest/types': 27.5.1 6174 - '@types/node': 18.15.13 6175 - chalk: 4.1.2 6176 - emittery: 0.8.1 6177 - graceful-fs: 4.2.11 6178 - jest-docblock: 27.5.1 6179 - jest-environment-jsdom: 27.5.1 6180 - jest-environment-node: 27.5.1 6181 - jest-haste-map: 27.5.1 6182 - jest-leak-detector: 27.5.1 6183 - jest-message-util: 27.5.1 6184 - jest-resolve: 27.5.1 6185 - jest-runtime: 27.5.1 6186 - jest-util: 27.5.1 6187 - jest-worker: 27.5.1 6188 - source-map-support: 0.5.21 6189 - throat: 6.0.2 6190 - transitivePeerDependencies: 6191 - - bufferutil 6192 - - canvas 6193 - - supports-color 6194 - - utf-8-validate 6195 - dev: false 6196 - 6197 - /jest-runtime@27.5.1: 6198 - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} 6199 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6200 - dependencies: 6201 - '@jest/environment': 27.5.1 6202 - '@jest/fake-timers': 27.5.1 6203 - '@jest/globals': 27.5.1 6204 - '@jest/source-map': 27.5.1 6205 - '@jest/test-result': 27.5.1 6206 - '@jest/transform': 27.5.1 6207 - '@jest/types': 27.5.1 6208 - chalk: 4.1.2 6209 - cjs-module-lexer: 1.2.2 6210 - collect-v8-coverage: 1.0.1 6211 - execa: 5.1.1 6212 - glob: 7.2.3 6213 - graceful-fs: 4.2.11 6214 - jest-haste-map: 27.5.1 6215 - jest-message-util: 27.5.1 6216 - jest-mock: 27.5.1 6217 - jest-regex-util: 27.5.1 6218 - jest-resolve: 27.5.1 6219 - jest-snapshot: 27.5.1 6220 - jest-util: 27.5.1 6221 - slash: 3.0.0 6222 - strip-bom: 4.0.0 6223 - transitivePeerDependencies: 6224 - - supports-color 6225 - dev: false 6226 - 6227 - /jest-serializer@27.5.1: 6228 - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} 6229 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6230 - dependencies: 6231 - '@types/node': 18.15.13 6232 - graceful-fs: 4.2.11 6233 - dev: false 6234 - 6235 - /jest-snapshot@27.5.1: 6236 - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} 6237 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6238 - dependencies: 6239 - '@babel/core': 7.21.4 6240 - '@babel/generator': 7.21.4 6241 - '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) 6242 - '@babel/traverse': 7.21.4 6243 - '@babel/types': 7.21.4 6244 - '@jest/transform': 27.5.1 6245 - '@jest/types': 27.5.1 6246 - '@types/babel__traverse': 7.18.3 6247 - '@types/prettier': 2.7.2 6248 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4) 6249 - chalk: 4.1.2 6250 - expect: 27.5.1 6251 - graceful-fs: 4.2.11 6252 - jest-diff: 27.5.1 6253 - jest-get-type: 27.5.1 6254 - jest-haste-map: 27.5.1 6255 - jest-matcher-utils: 27.5.1 6256 - jest-message-util: 27.5.1 6257 - jest-util: 27.5.1 6258 - natural-compare: 1.4.0 6259 - pretty-format: 27.5.1 6260 - semver: 7.5.0 6261 - transitivePeerDependencies: 6262 - - supports-color 6263 - dev: false 6264 - 6265 - /jest-util@27.5.1: 6266 - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} 6267 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6268 - dependencies: 6269 - '@jest/types': 27.5.1 6270 - '@types/node': 18.15.13 6271 - chalk: 4.1.2 6272 - ci-info: 3.8.0 6273 - graceful-fs: 4.2.11 6274 - picomatch: 2.3.1 6275 - dev: false 6276 - 6277 - /jest-util@28.1.3: 6278 - resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} 6279 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 6280 - dependencies: 6281 - '@jest/types': 28.1.3 6282 - '@types/node': 18.15.13 6283 - chalk: 4.1.2 6284 - ci-info: 3.8.0 6285 - graceful-fs: 4.2.11 6286 - picomatch: 2.3.1 6287 - dev: false 6288 - 6289 - /jest-validate@27.5.1: 6290 - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} 6291 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6292 - dependencies: 6293 - '@jest/types': 27.5.1 6294 - camelcase: 6.3.0 6295 - chalk: 4.1.2 6296 - jest-get-type: 27.5.1 6297 - leven: 3.1.0 6298 - pretty-format: 27.5.1 6299 - dev: false 6300 - 6301 - /jest-watch-typeahead@1.1.0(jest@27.5.1): 6302 - resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==} 6303 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6304 - peerDependencies: 6305 - jest: ^27.0.0 || ^28.0.0 6306 - dependencies: 6307 - ansi-escapes: 4.3.2 6308 - chalk: 4.1.2 6309 - jest: 27.5.1 6310 - jest-regex-util: 28.0.2 6311 - jest-watcher: 28.1.3 6312 - slash: 4.0.0 6313 - string-length: 5.0.1 6314 - strip-ansi: 7.0.1 6315 - dev: false 6316 - 6317 - /jest-watcher@27.5.1: 6318 - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} 6319 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6320 - dependencies: 6321 - '@jest/test-result': 27.5.1 6322 - '@jest/types': 27.5.1 6323 - '@types/node': 18.15.13 6324 - ansi-escapes: 4.3.2 6325 - chalk: 4.1.2 6326 - jest-util: 27.5.1 6327 - string-length: 4.0.2 6328 - dev: false 6329 - 6330 - /jest-watcher@28.1.3: 6331 - resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} 6332 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 6333 - dependencies: 6334 - '@jest/test-result': 28.1.3 6335 - '@jest/types': 28.1.3 6336 - '@types/node': 18.15.13 6337 - ansi-escapes: 4.3.2 6338 - chalk: 4.1.2 6339 - emittery: 0.10.2 6340 - jest-util: 28.1.3 6341 - string-length: 4.0.2 6342 - dev: false 6343 - 6344 - /jest-worker@26.6.2: 6345 - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} 6346 - engines: {node: '>= 10.13.0'} 6347 - dependencies: 6348 - '@types/node': 18.15.13 6349 - merge-stream: 2.0.0 6350 - supports-color: 7.2.0 6351 - dev: false 6352 - 6353 - /jest-worker@27.5.1: 6354 - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} 6355 - engines: {node: '>= 10.13.0'} 6356 - dependencies: 6357 - '@types/node': 18.15.13 6358 - merge-stream: 2.0.0 6359 - supports-color: 8.1.1 6360 - dev: false 6361 - 6362 - /jest-worker@28.1.3: 6363 - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} 6364 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 6365 - dependencies: 6366 - '@types/node': 18.15.13 6367 - merge-stream: 2.0.0 6368 - supports-color: 8.1.1 6369 - dev: false 6370 - 6371 - /jest@27.5.1: 6372 - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} 6373 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 6374 - hasBin: true 6375 - peerDependencies: 6376 - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 6377 - peerDependenciesMeta: 6378 - node-notifier: 6379 - optional: true 6380 - dependencies: 6381 - '@jest/core': 27.5.1 6382 - import-local: 3.1.0 6383 - jest-cli: 27.5.1 6384 - transitivePeerDependencies: 6385 - - bufferutil 6386 - - canvas 6387 - - supports-color 6388 - - ts-node 6389 - - utf-8-validate 6390 - dev: false 6391 - 6392 - /jiti@1.18.2: 6393 - resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} 6394 - hasBin: true 6395 - dev: false 6396 - 6397 1161 /js-sdsl@4.4.0: 6398 1162 resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} 1163 + dev: true 6399 1164 6400 1165 /js-tokens@4.0.0: 6401 1166 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 6402 1167 dev: false 6403 1168 6404 - /js-yaml@3.14.1: 6405 - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 6406 - hasBin: true 6407 - dependencies: 6408 - argparse: 1.0.10 6409 - esprima: 4.0.1 6410 - dev: false 6411 - 6412 1169 /js-yaml@4.1.0: 6413 1170 resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 6414 1171 hasBin: true 6415 1172 dependencies: 6416 1173 argparse: 2.0.1 6417 - 6418 - /jsdom@16.7.0: 6419 - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} 6420 - engines: {node: '>=10'} 6421 - peerDependencies: 6422 - canvas: ^2.5.0 6423 - peerDependenciesMeta: 6424 - canvas: 6425 - optional: true 6426 - dependencies: 6427 - abab: 2.0.6 6428 - acorn: 8.8.2 6429 - acorn-globals: 6.0.0 6430 - cssom: 0.4.4 6431 - cssstyle: 2.3.0 6432 - data-urls: 2.0.0 6433 - decimal.js: 10.4.3 6434 - domexception: 2.0.1 6435 - escodegen: 2.0.0 6436 - form-data: 3.0.1 6437 - html-encoding-sniffer: 2.0.1 6438 - http-proxy-agent: 4.0.1 6439 - https-proxy-agent: 5.0.1 6440 - is-potential-custom-element-name: 1.0.1 6441 - nwsapi: 2.2.4 6442 - parse5: 6.0.1 6443 - saxes: 5.0.1 6444 - symbol-tree: 3.2.4 6445 - tough-cookie: 4.1.2 6446 - w3c-hr-time: 1.0.2 6447 - w3c-xmlserializer: 2.0.0 6448 - webidl-conversions: 6.1.0 6449 - whatwg-encoding: 1.0.5 6450 - whatwg-mimetype: 2.3.0 6451 - whatwg-url: 8.7.0 6452 - ws: 7.5.9 6453 - xml-name-validator: 3.0.0 6454 - transitivePeerDependencies: 6455 - - bufferutil 6456 - - supports-color 6457 - - utf-8-validate 6458 - dev: false 6459 - 6460 - /jsesc@0.5.0: 6461 - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 6462 - hasBin: true 6463 - dev: false 6464 - 6465 - /jsesc@2.5.2: 6466 - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 6467 - engines: {node: '>=4'} 6468 - hasBin: true 6469 - dev: false 6470 - 6471 - /json-parse-even-better-errors@2.3.1: 6472 - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 6473 - dev: false 1174 + dev: true 6474 1175 6475 1176 /json-schema-traverse@0.4.1: 6476 1177 resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 6477 - 6478 - /json-schema-traverse@1.0.0: 6479 - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 6480 - dev: false 6481 - 6482 - /json-schema@0.4.0: 6483 - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} 6484 - dev: false 1178 + dev: true 6485 1179 6486 1180 /json-stable-stringify-without-jsonify@1.0.1: 6487 1181 resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 6488 - 6489 - /json5@1.0.2: 6490 - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 6491 - hasBin: true 6492 - dependencies: 6493 - minimist: 1.2.8 6494 - dev: false 6495 - 6496 - /json5@2.2.3: 6497 - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 6498 - engines: {node: '>=6'} 6499 - hasBin: true 6500 - dev: false 6501 - 6502 - /jsonfile@6.1.0: 6503 - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 6504 - dependencies: 6505 - universalify: 2.0.0 6506 - optionalDependencies: 6507 - graceful-fs: 4.2.11 6508 - dev: false 6509 - 6510 - /jsonpointer@5.0.1: 6511 - resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} 6512 - engines: {node: '>=0.10.0'} 6513 - dev: false 6514 - 6515 - /jsx-ast-utils@3.3.3: 6516 - resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 6517 - engines: {node: '>=4.0'} 6518 - dependencies: 6519 - array-includes: 3.1.6 6520 - object.assign: 4.1.4 6521 - dev: false 6522 - 6523 - /kind-of@6.0.3: 6524 - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 6525 - engines: {node: '>=0.10.0'} 6526 - dev: false 6527 - 6528 - /kleur@3.0.3: 6529 - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 6530 - engines: {node: '>=6'} 6531 - dev: false 6532 - 6533 - /klona@2.0.6: 6534 - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} 6535 - engines: {node: '>= 8'} 6536 - dev: false 6537 - 6538 - /language-subtag-registry@0.3.22: 6539 - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 6540 - dev: false 6541 - 6542 - /language-tags@1.0.5: 6543 - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 6544 - dependencies: 6545 - language-subtag-registry: 0.3.22 6546 - dev: false 6547 - 6548 - /launch-editor@2.6.0: 6549 - resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==} 6550 - dependencies: 6551 - picocolors: 1.0.0 6552 - shell-quote: 1.8.1 6553 - dev: false 6554 - 6555 - /leven@3.1.0: 6556 - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} 6557 - engines: {node: '>=6'} 6558 - dev: false 6559 - 6560 - /levn@0.3.0: 6561 - resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} 6562 - engines: {node: '>= 0.8.0'} 6563 - dependencies: 6564 - prelude-ls: 1.1.2 6565 - type-check: 0.3.2 6566 - dev: false 1182 + dev: true 6567 1183 6568 1184 /levn@0.4.1: 6569 1185 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} ··· 6571 1187 dependencies: 6572 1188 prelude-ls: 1.2.1 6573 1189 type-check: 0.4.0 6574 - 6575 - /lilconfig@2.1.0: 6576 - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 6577 - engines: {node: '>=10'} 6578 - dev: false 6579 - 6580 - /lines-and-columns@1.2.4: 6581 - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 6582 - dev: false 6583 - 6584 - /loader-runner@4.3.0: 6585 - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} 6586 - engines: {node: '>=6.11.5'} 6587 - dev: false 6588 - 6589 - /loader-utils@2.0.4: 6590 - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} 6591 - engines: {node: '>=8.9.0'} 6592 - dependencies: 6593 - big.js: 5.2.2 6594 - emojis-list: 3.0.0 6595 - json5: 2.2.3 6596 - dev: false 6597 - 6598 - /loader-utils@3.2.1: 6599 - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} 6600 - engines: {node: '>= 12.13.0'} 6601 - dev: false 6602 - 6603 - /locate-path@3.0.0: 6604 - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} 6605 - engines: {node: '>=6'} 6606 - dependencies: 6607 - p-locate: 3.0.0 6608 - path-exists: 3.0.0 6609 - dev: false 6610 - 6611 - /locate-path@5.0.0: 6612 - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 6613 - engines: {node: '>=8'} 6614 - dependencies: 6615 - p-locate: 4.1.0 6616 - dev: false 1190 + dev: true 6617 1191 6618 1192 /locate-path@6.0.0: 6619 1193 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 6620 1194 engines: {node: '>=10'} 6621 1195 dependencies: 6622 1196 p-locate: 5.0.0 6623 - 6624 - /lodash.debounce@4.0.8: 6625 - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 6626 - dev: false 6627 - 6628 - /lodash.memoize@4.1.2: 6629 - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} 6630 - dev: false 1197 + dev: true 6631 1198 6632 1199 /lodash.merge@4.6.2: 6633 1200 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 6634 - 6635 - /lodash.sortby@4.7.0: 6636 - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 6637 - dev: false 6638 - 6639 - /lodash.uniq@4.5.0: 6640 - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} 6641 - dev: false 6642 - 6643 - /lodash@4.17.21: 6644 - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 6645 - dev: false 1201 + dev: true 6646 1202 6647 1203 /loose-envify@1.4.0: 6648 1204 resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} ··· 6651 1207 js-tokens: 4.0.0 6652 1208 dev: false 6653 1209 6654 - /lower-case@2.0.2: 6655 - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 6656 - dependencies: 6657 - tslib: 2.5.0 6658 - dev: false 6659 - 6660 - /lru-cache@5.1.1: 6661 - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 6662 - dependencies: 6663 - yallist: 3.1.1 6664 - dev: false 6665 - 6666 1210 /lru-cache@6.0.0: 6667 1211 resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 6668 1212 engines: {node: '>=10'} 6669 1213 dependencies: 6670 1214 yallist: 4.0.0 6671 - 6672 - /magic-string@0.25.9: 6673 - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} 6674 - dependencies: 6675 - sourcemap-codec: 1.4.8 6676 - dev: false 6677 - 6678 - /make-dir@3.1.0: 6679 - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 6680 - engines: {node: '>=8'} 6681 - dependencies: 6682 - semver: 6.3.0 6683 - dev: false 6684 - 6685 - /makeerror@1.0.12: 6686 - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} 6687 - dependencies: 6688 - tmpl: 1.0.5 6689 - dev: false 6690 - 6691 - /mdn-data@2.0.14: 6692 - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} 6693 - dev: false 6694 - 6695 - /mdn-data@2.0.4: 6696 - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} 6697 - dev: false 6698 - 6699 - /media-typer@0.3.0: 6700 - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 6701 - engines: {node: '>= 0.6'} 6702 - dev: false 6703 - 6704 - /memfs@3.5.1: 6705 - resolution: {integrity: sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==} 6706 - engines: {node: '>= 4.0.0'} 6707 - dependencies: 6708 - fs-monkey: 1.0.3 6709 - dev: false 1215 + dev: true 6710 1216 6711 1217 /memoize-one@5.2.1: 6712 1218 resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} 6713 1219 dev: false 6714 1220 6715 - /merge-descriptors@1.0.1: 6716 - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} 6717 - dev: false 6718 - 6719 - /merge-stream@2.0.0: 6720 - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 6721 - dev: false 6722 - 6723 1221 /merge2@1.4.1: 6724 1222 resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 6725 1223 engines: {node: '>= 8'} 6726 - 6727 - /methods@1.1.2: 6728 - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 6729 - engines: {node: '>= 0.6'} 6730 - dev: false 1224 + dev: true 6731 1225 6732 1226 /micromatch@4.0.5: 6733 1227 resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} ··· 6735 1229 dependencies: 6736 1230 braces: 3.0.2 6737 1231 picomatch: 2.3.1 6738 - 6739 - /mime-db@1.52.0: 6740 - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 6741 - engines: {node: '>= 0.6'} 6742 - dev: false 6743 - 6744 - /mime-types@2.1.35: 6745 - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 6746 - engines: {node: '>= 0.6'} 6747 - dependencies: 6748 - mime-db: 1.52.0 6749 - dev: false 6750 - 6751 - /mime@1.6.0: 6752 - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 6753 - engines: {node: '>=4'} 6754 - hasBin: true 6755 - dev: false 6756 - 6757 - /mimic-fn@2.1.0: 6758 - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 6759 - engines: {node: '>=6'} 6760 - dev: false 6761 - 6762 - /mini-css-extract-plugin@2.7.5(webpack@5.80.0): 6763 - resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==} 6764 - engines: {node: '>= 12.13.0'} 6765 - peerDependencies: 6766 - webpack: ^5.0.0 6767 - dependencies: 6768 - schema-utils: 4.0.1 6769 - webpack: 5.80.0 6770 - dev: false 6771 - 6772 - /minimalistic-assert@1.0.1: 6773 - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} 6774 - dev: false 1232 + dev: true 6775 1233 6776 1234 /minimatch@3.1.2: 6777 1235 resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 6778 1236 dependencies: 6779 1237 brace-expansion: 1.1.11 6780 - 6781 - /minimatch@5.1.6: 6782 - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 6783 - engines: {node: '>=10'} 6784 - dependencies: 6785 - brace-expansion: 2.0.1 6786 - dev: false 6787 - 6788 - /minimist@1.2.8: 6789 - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 6790 - dev: false 6791 - 6792 - /mkdirp@0.5.6: 6793 - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 6794 - hasBin: true 6795 - dependencies: 6796 - minimist: 1.2.8 6797 - dev: false 6798 - 6799 - /ms@2.0.0: 6800 - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 6801 - dev: false 1238 + dev: true 6802 1239 6803 1240 /ms@2.1.2: 6804 1241 resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 6805 - 6806 - /ms@2.1.3: 6807 - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 6808 - dev: false 6809 - 6810 - /multicast-dns@7.2.5: 6811 - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} 6812 - hasBin: true 6813 - dependencies: 6814 - dns-packet: 5.6.0 6815 - thunky: 1.1.0 6816 - dev: false 1242 + dev: true 6817 1243 6818 1244 /multiformats@9.9.0: 6819 1245 resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} 6820 - dev: false 6821 - 6822 - /mz@2.7.0: 6823 - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 6824 - dependencies: 6825 - any-promise: 1.3.0 6826 - object-assign: 4.1.1 6827 - thenify-all: 1.6.0 6828 1246 dev: false 6829 1247 6830 1248 /nanoid@3.3.6: 6831 1249 resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 6832 1250 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 6833 1251 hasBin: true 6834 - dev: false 1252 + dev: true 6835 1253 6836 1254 /natural-compare-lite@1.4.0: 6837 1255 resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 1256 + dev: true 6838 1257 6839 1258 /natural-compare@1.4.0: 6840 1259 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 6841 - 6842 - /negotiator@0.6.3: 6843 - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 6844 - engines: {node: '>= 0.6'} 6845 - dev: false 6846 - 6847 - /neo-async@2.6.2: 6848 - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 6849 - dev: false 6850 - 6851 - /no-case@3.0.4: 6852 - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 6853 - dependencies: 6854 - lower-case: 2.0.2 6855 - tslib: 2.5.0 6856 - dev: false 6857 - 6858 - /node-forge@1.3.1: 6859 - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} 6860 - engines: {node: '>= 6.13.0'} 6861 - dev: false 6862 - 6863 - /node-int64@0.4.0: 6864 - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} 6865 - dev: false 6866 - 6867 - /node-releases@2.0.10: 6868 - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} 6869 - dev: false 6870 - 6871 - /normalize-path@3.0.0: 6872 - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 6873 - engines: {node: '>=0.10.0'} 6874 - dev: false 6875 - 6876 - /normalize-range@0.1.2: 6877 - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 6878 - engines: {node: '>=0.10.0'} 6879 - dev: false 6880 - 6881 - /normalize-url@6.1.0: 6882 - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} 6883 - engines: {node: '>=10'} 6884 - dev: false 6885 - 6886 - /npm-run-path@4.0.1: 6887 - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 6888 - engines: {node: '>=8'} 6889 - dependencies: 6890 - path-key: 3.1.1 6891 - dev: false 6892 - 6893 - /nth-check@1.0.2: 6894 - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} 6895 - dependencies: 6896 - boolbase: 1.0.0 6897 - dev: false 6898 - 6899 - /nth-check@2.1.1: 6900 - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 6901 - dependencies: 6902 - boolbase: 1.0.0 6903 - dev: false 6904 - 6905 - /nwsapi@2.2.4: 6906 - resolution: {integrity: sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g==} 6907 - dev: false 1260 + dev: true 6908 1261 6909 1262 /object-assign@4.1.1: 6910 1263 resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 6911 1264 engines: {node: '>=0.10.0'} 6912 1265 dev: false 6913 1266 6914 - /object-hash@3.0.0: 6915 - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 6916 - engines: {node: '>= 6'} 6917 - dev: false 6918 - 6919 - /object-inspect@1.12.3: 6920 - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 6921 - dev: false 6922 - 6923 - /object-is@1.1.5: 6924 - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} 6925 - engines: {node: '>= 0.4'} 6926 - dependencies: 6927 - call-bind: 1.0.2 6928 - define-properties: 1.2.0 6929 - dev: false 6930 - 6931 - /object-keys@1.1.1: 6932 - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 6933 - engines: {node: '>= 0.4'} 6934 - dev: false 6935 - 6936 - /object.assign@4.1.4: 6937 - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 6938 - engines: {node: '>= 0.4'} 6939 - dependencies: 6940 - call-bind: 1.0.2 6941 - define-properties: 1.2.0 6942 - has-symbols: 1.0.3 6943 - object-keys: 1.1.1 6944 - dev: false 6945 - 6946 - /object.entries@1.1.6: 6947 - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 6948 - engines: {node: '>= 0.4'} 6949 - dependencies: 6950 - call-bind: 1.0.2 6951 - define-properties: 1.2.0 6952 - es-abstract: 1.21.2 6953 - dev: false 6954 - 6955 - /object.fromentries@2.0.6: 6956 - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 6957 - engines: {node: '>= 0.4'} 6958 - dependencies: 6959 - call-bind: 1.0.2 6960 - define-properties: 1.2.0 6961 - es-abstract: 1.21.2 6962 - dev: false 6963 - 6964 - /object.getownpropertydescriptors@2.1.6: 6965 - resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==} 6966 - engines: {node: '>= 0.8'} 6967 - dependencies: 6968 - array.prototype.reduce: 1.0.5 6969 - call-bind: 1.0.2 6970 - define-properties: 1.2.0 6971 - es-abstract: 1.21.2 6972 - safe-array-concat: 1.0.0 6973 - dev: false 6974 - 6975 - /object.hasown@1.1.2: 6976 - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 6977 - dependencies: 6978 - define-properties: 1.2.0 6979 - es-abstract: 1.21.2 6980 - dev: false 6981 - 6982 - /object.values@1.1.6: 6983 - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 6984 - engines: {node: '>= 0.4'} 6985 - dependencies: 6986 - call-bind: 1.0.2 6987 - define-properties: 1.2.0 6988 - es-abstract: 1.21.2 6989 - dev: false 6990 - 6991 - /obuf@1.1.2: 6992 - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} 6993 - dev: false 6994 - 6995 - /on-finished@2.4.1: 6996 - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 6997 - engines: {node: '>= 0.8'} 6998 - dependencies: 6999 - ee-first: 1.1.1 7000 - dev: false 7001 - 7002 - /on-headers@1.0.2: 7003 - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} 7004 - engines: {node: '>= 0.8'} 7005 - dev: false 7006 - 7007 1267 /once@1.4.0: 7008 1268 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 7009 1269 dependencies: 7010 1270 wrappy: 1.0.2 7011 - 7012 - /onetime@5.1.2: 7013 - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 7014 - engines: {node: '>=6'} 7015 - dependencies: 7016 - mimic-fn: 2.1.0 7017 - dev: false 7018 - 7019 - /open@8.4.2: 7020 - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 7021 - engines: {node: '>=12'} 7022 - dependencies: 7023 - define-lazy-prop: 2.0.0 7024 - is-docker: 2.2.1 7025 - is-wsl: 2.2.0 7026 - dev: false 7027 - 7028 - /optionator@0.8.3: 7029 - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} 7030 - engines: {node: '>= 0.8.0'} 7031 - dependencies: 7032 - deep-is: 0.1.4 7033 - fast-levenshtein: 2.0.6 7034 - levn: 0.3.0 7035 - prelude-ls: 1.1.2 7036 - type-check: 0.3.2 7037 - word-wrap: 1.2.3 7038 - dev: false 1271 + dev: true 7039 1272 7040 1273 /optionator@0.9.1: 7041 1274 resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} ··· 7047 1280 prelude-ls: 1.2.1 7048 1281 type-check: 0.4.0 7049 1282 word-wrap: 1.2.3 7050 - 7051 - /p-limit@2.3.0: 7052 - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 7053 - engines: {node: '>=6'} 7054 - dependencies: 7055 - p-try: 2.2.0 7056 - dev: false 1283 + dev: true 7057 1284 7058 1285 /p-limit@3.1.0: 7059 1286 resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 7060 1287 engines: {node: '>=10'} 7061 1288 dependencies: 7062 1289 yocto-queue: 0.1.0 7063 - 7064 - /p-locate@3.0.0: 7065 - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} 7066 - engines: {node: '>=6'} 7067 - dependencies: 7068 - p-limit: 2.3.0 7069 - dev: false 7070 - 7071 - /p-locate@4.1.0: 7072 - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 7073 - engines: {node: '>=8'} 7074 - dependencies: 7075 - p-limit: 2.3.0 7076 - dev: false 1290 + dev: true 7077 1291 7078 1292 /p-locate@5.0.0: 7079 1293 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 7080 1294 engines: {node: '>=10'} 7081 1295 dependencies: 7082 1296 p-limit: 3.1.0 7083 - 7084 - /p-retry@4.6.2: 7085 - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} 7086 - engines: {node: '>=8'} 7087 - dependencies: 7088 - '@types/retry': 0.12.0 7089 - retry: 0.13.1 7090 - dev: false 7091 - 7092 - /p-try@2.2.0: 7093 - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 7094 - engines: {node: '>=6'} 7095 - dev: false 7096 - 7097 - /param-case@3.0.4: 7098 - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} 7099 - dependencies: 7100 - dot-case: 3.0.4 7101 - tslib: 2.5.0 7102 - dev: false 1297 + dev: true 7103 1298 7104 1299 /parent-module@1.0.1: 7105 1300 resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 7106 1301 engines: {node: '>=6'} 7107 1302 dependencies: 7108 1303 callsites: 3.1.0 7109 - 7110 - /parse-json@5.2.0: 7111 - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 7112 - engines: {node: '>=8'} 7113 - dependencies: 7114 - '@babel/code-frame': 7.21.4 7115 - error-ex: 1.3.2 7116 - json-parse-even-better-errors: 2.3.1 7117 - lines-and-columns: 1.2.4 7118 - dev: false 7119 - 7120 - /parse5@6.0.1: 7121 - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} 7122 - dev: false 7123 - 7124 - /parseurl@1.3.3: 7125 - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 7126 - engines: {node: '>= 0.8'} 7127 - dev: false 7128 - 7129 - /pascal-case@3.1.2: 7130 - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 7131 - dependencies: 7132 - no-case: 3.0.4 7133 - tslib: 2.5.0 7134 - dev: false 7135 - 7136 - /path-exists@3.0.0: 7137 - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} 7138 - engines: {node: '>=4'} 7139 - dev: false 1304 + dev: true 7140 1305 7141 1306 /path-exists@4.0.0: 7142 1307 resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 7143 1308 engines: {node: '>=8'} 1309 + dev: true 7144 1310 7145 1311 /path-is-absolute@1.0.1: 7146 1312 resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 7147 1313 engines: {node: '>=0.10.0'} 1314 + dev: true 7148 1315 7149 1316 /path-key@3.1.1: 7150 1317 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 7151 1318 engines: {node: '>=8'} 7152 - 7153 - /path-parse@1.0.7: 7154 - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 7155 - dev: false 7156 - 7157 - /path-to-regexp@0.1.7: 7158 - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} 7159 - dev: false 1319 + dev: true 7160 1320 7161 1321 /path-type@4.0.0: 7162 1322 resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 7163 1323 engines: {node: '>=8'} 7164 - 7165 - /performance-now@2.1.0: 7166 - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} 7167 - dev: false 7168 - 7169 - /picocolors@0.2.1: 7170 - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} 7171 - dev: false 1324 + dev: true 7172 1325 7173 1326 /picocolors@1.0.0: 7174 1327 resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 7175 - dev: false 1328 + dev: true 7176 1329 7177 1330 /picomatch@2.3.1: 7178 1331 resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 7179 1332 engines: {node: '>=8.6'} 7180 - 7181 - /pify@2.3.0: 7182 - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 7183 - engines: {node: '>=0.10.0'} 7184 - dev: false 7185 - 7186 - /pirates@4.0.5: 7187 - resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} 7188 - engines: {node: '>= 6'} 7189 - dev: false 7190 - 7191 - /pkg-dir@4.2.0: 7192 - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 7193 - engines: {node: '>=8'} 7194 - dependencies: 7195 - find-up: 4.1.0 7196 - dev: false 7197 - 7198 - /pkg-up@3.1.0: 7199 - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} 7200 - engines: {node: '>=8'} 7201 - dependencies: 7202 - find-up: 3.0.0 7203 - dev: false 7204 - 7205 - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.23): 7206 - resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} 7207 - engines: {node: ^12 || ^14 || >=16} 7208 - peerDependencies: 7209 - postcss: ^8.2 7210 - dependencies: 7211 - postcss: 8.4.23 7212 - postcss-selector-parser: 6.0.11 7213 - dev: false 7214 - 7215 - /postcss-browser-comments@4.0.0(browserslist@4.21.5)(postcss@8.4.23): 7216 - resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} 7217 - engines: {node: '>=8'} 7218 - peerDependencies: 7219 - browserslist: '>=4' 7220 - postcss: '>=8' 7221 - dependencies: 7222 - browserslist: 4.21.5 7223 - postcss: 8.4.23 7224 - dev: false 7225 - 7226 - /postcss-calc@8.2.4(postcss@8.4.23): 7227 - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} 7228 - peerDependencies: 7229 - postcss: ^8.2.2 7230 - dependencies: 7231 - postcss: 8.4.23 7232 - postcss-selector-parser: 6.0.11 7233 - postcss-value-parser: 4.2.0 7234 - dev: false 7235 - 7236 - /postcss-clamp@4.1.0(postcss@8.4.23): 7237 - resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} 7238 - engines: {node: '>=7.6.0'} 7239 - peerDependencies: 7240 - postcss: ^8.4.6 7241 - dependencies: 7242 - postcss: 8.4.23 7243 - postcss-value-parser: 4.2.0 7244 - dev: false 7245 - 7246 - /postcss-color-functional-notation@4.2.4(postcss@8.4.23): 7247 - resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} 7248 - engines: {node: ^12 || ^14 || >=16} 7249 - peerDependencies: 7250 - postcss: ^8.2 7251 - dependencies: 7252 - postcss: 8.4.23 7253 - postcss-value-parser: 4.2.0 7254 - dev: false 7255 - 7256 - /postcss-color-hex-alpha@8.0.4(postcss@8.4.23): 7257 - resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} 7258 - engines: {node: ^12 || ^14 || >=16} 7259 - peerDependencies: 7260 - postcss: ^8.4 7261 - dependencies: 7262 - postcss: 8.4.23 7263 - postcss-value-parser: 4.2.0 7264 - dev: false 7265 - 7266 - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.23): 7267 - resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} 7268 - engines: {node: ^12 || ^14 || >=16} 7269 - peerDependencies: 7270 - postcss: ^8.2 7271 - dependencies: 7272 - postcss: 8.4.23 7273 - postcss-value-parser: 4.2.0 7274 - dev: false 7275 - 7276 - /postcss-colormin@5.3.1(postcss@8.4.23): 7277 - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} 7278 - engines: {node: ^10 || ^12 || >=14.0} 7279 - peerDependencies: 7280 - postcss: ^8.2.15 7281 - dependencies: 7282 - browserslist: 4.21.5 7283 - caniuse-api: 3.0.0 7284 - colord: 2.9.3 7285 - postcss: 8.4.23 7286 - postcss-value-parser: 4.2.0 7287 - dev: false 7288 - 7289 - /postcss-convert-values@5.1.3(postcss@8.4.23): 7290 - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} 7291 - engines: {node: ^10 || ^12 || >=14.0} 7292 - peerDependencies: 7293 - postcss: ^8.2.15 7294 - dependencies: 7295 - browserslist: 4.21.5 7296 - postcss: 8.4.23 7297 - postcss-value-parser: 4.2.0 7298 - dev: false 7299 - 7300 - /postcss-custom-media@8.0.2(postcss@8.4.23): 7301 - resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} 7302 - engines: {node: ^12 || ^14 || >=16} 7303 - peerDependencies: 7304 - postcss: ^8.3 7305 - dependencies: 7306 - postcss: 8.4.23 7307 - postcss-value-parser: 4.2.0 7308 - dev: false 7309 - 7310 - /postcss-custom-properties@12.1.11(postcss@8.4.23): 7311 - resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} 7312 - engines: {node: ^12 || ^14 || >=16} 7313 - peerDependencies: 7314 - postcss: ^8.2 7315 - dependencies: 7316 - postcss: 8.4.23 7317 - postcss-value-parser: 4.2.0 7318 - dev: false 7319 - 7320 - /postcss-custom-selectors@6.0.3(postcss@8.4.23): 7321 - resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} 7322 - engines: {node: ^12 || ^14 || >=16} 7323 - peerDependencies: 7324 - postcss: ^8.3 7325 - dependencies: 7326 - postcss: 8.4.23 7327 - postcss-selector-parser: 6.0.11 7328 - dev: false 7329 - 7330 - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.23): 7331 - resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} 7332 - engines: {node: ^12 || ^14 || >=16} 7333 - peerDependencies: 7334 - postcss: ^8.2 7335 - dependencies: 7336 - postcss: 8.4.23 7337 - postcss-selector-parser: 6.0.11 7338 - dev: false 7339 - 7340 - /postcss-discard-comments@5.1.2(postcss@8.4.23): 7341 - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} 7342 - engines: {node: ^10 || ^12 || >=14.0} 7343 - peerDependencies: 7344 - postcss: ^8.2.15 7345 - dependencies: 7346 - postcss: 8.4.23 7347 - dev: false 7348 - 7349 - /postcss-discard-duplicates@5.1.0(postcss@8.4.23): 7350 - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} 7351 - engines: {node: ^10 || ^12 || >=14.0} 7352 - peerDependencies: 7353 - postcss: ^8.2.15 7354 - dependencies: 7355 - postcss: 8.4.23 7356 - dev: false 7357 - 7358 - /postcss-discard-empty@5.1.1(postcss@8.4.23): 7359 - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} 7360 - engines: {node: ^10 || ^12 || >=14.0} 7361 - peerDependencies: 7362 - postcss: ^8.2.15 7363 - dependencies: 7364 - postcss: 8.4.23 7365 - dev: false 7366 - 7367 - /postcss-discard-overridden@5.1.0(postcss@8.4.23): 7368 - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} 7369 - engines: {node: ^10 || ^12 || >=14.0} 7370 - peerDependencies: 7371 - postcss: ^8.2.15 7372 - dependencies: 7373 - postcss: 8.4.23 7374 - dev: false 7375 - 7376 - /postcss-double-position-gradients@3.1.2(postcss@8.4.23): 7377 - resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} 7378 - engines: {node: ^12 || ^14 || >=16} 7379 - peerDependencies: 7380 - postcss: ^8.2 7381 - dependencies: 7382 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 7383 - postcss: 8.4.23 7384 - postcss-value-parser: 4.2.0 7385 - dev: false 7386 - 7387 - /postcss-env-function@4.0.6(postcss@8.4.23): 7388 - resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} 7389 - engines: {node: ^12 || ^14 || >=16} 7390 - peerDependencies: 7391 - postcss: ^8.4 7392 - dependencies: 7393 - postcss: 8.4.23 7394 - postcss-value-parser: 4.2.0 7395 - dev: false 7396 - 7397 - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.23): 7398 - resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} 7399 - peerDependencies: 7400 - postcss: ^8.1.4 7401 - dependencies: 7402 - postcss: 8.4.23 7403 - dev: false 7404 - 7405 - /postcss-focus-visible@6.0.4(postcss@8.4.23): 7406 - resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} 7407 - engines: {node: ^12 || ^14 || >=16} 7408 - peerDependencies: 7409 - postcss: ^8.4 7410 - dependencies: 7411 - postcss: 8.4.23 7412 - postcss-selector-parser: 6.0.11 7413 - dev: false 7414 - 7415 - /postcss-focus-within@5.0.4(postcss@8.4.23): 7416 - resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} 7417 - engines: {node: ^12 || ^14 || >=16} 7418 - peerDependencies: 7419 - postcss: ^8.4 7420 - dependencies: 7421 - postcss: 8.4.23 7422 - postcss-selector-parser: 6.0.11 7423 - dev: false 7424 - 7425 - /postcss-font-variant@5.0.0(postcss@8.4.23): 7426 - resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} 7427 - peerDependencies: 7428 - postcss: ^8.1.0 7429 - dependencies: 7430 - postcss: 8.4.23 7431 - dev: false 7432 - 7433 - /postcss-gap-properties@3.0.5(postcss@8.4.23): 7434 - resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} 7435 - engines: {node: ^12 || ^14 || >=16} 7436 - peerDependencies: 7437 - postcss: ^8.2 7438 - dependencies: 7439 - postcss: 8.4.23 7440 - dev: false 7441 - 7442 - /postcss-image-set-function@4.0.7(postcss@8.4.23): 7443 - resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} 7444 - engines: {node: ^12 || ^14 || >=16} 7445 - peerDependencies: 7446 - postcss: ^8.2 7447 - dependencies: 7448 - postcss: 8.4.23 7449 - postcss-value-parser: 4.2.0 7450 - dev: false 7451 - 7452 - /postcss-import@14.1.0(postcss@8.4.23): 7453 - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} 7454 - engines: {node: '>=10.0.0'} 7455 - peerDependencies: 7456 - postcss: ^8.0.0 7457 - dependencies: 7458 - postcss: 8.4.23 7459 - postcss-value-parser: 4.2.0 7460 - read-cache: 1.0.0 7461 - resolve: 1.22.2 7462 - dev: false 7463 - 7464 - /postcss-initial@4.0.1(postcss@8.4.23): 7465 - resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} 7466 - peerDependencies: 7467 - postcss: ^8.0.0 7468 - dependencies: 7469 - postcss: 8.4.23 7470 - dev: false 7471 - 7472 - /postcss-js@4.0.1(postcss@8.4.23): 7473 - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 7474 - engines: {node: ^12 || ^14 || >= 16} 7475 - peerDependencies: 7476 - postcss: ^8.4.21 7477 - dependencies: 7478 - camelcase-css: 2.0.1 7479 - postcss: 8.4.23 7480 - dev: false 7481 - 7482 - /postcss-lab-function@4.2.1(postcss@8.4.23): 7483 - resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} 7484 - engines: {node: ^12 || ^14 || >=16} 7485 - peerDependencies: 7486 - postcss: ^8.2 7487 - dependencies: 7488 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 7489 - postcss: 8.4.23 7490 - postcss-value-parser: 4.2.0 7491 - dev: false 7492 - 7493 - /postcss-load-config@3.1.4(postcss@8.4.23): 7494 - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 7495 - engines: {node: '>= 10'} 7496 - peerDependencies: 7497 - postcss: '>=8.0.9' 7498 - ts-node: '>=9.0.0' 7499 - peerDependenciesMeta: 7500 - postcss: 7501 - optional: true 7502 - ts-node: 7503 - optional: true 7504 - dependencies: 7505 - lilconfig: 2.1.0 7506 - postcss: 8.4.23 7507 - yaml: 1.10.2 7508 - dev: false 7509 - 7510 - /postcss-loader@6.2.1(postcss@8.4.23)(webpack@5.80.0): 7511 - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} 7512 - engines: {node: '>= 12.13.0'} 7513 - peerDependencies: 7514 - postcss: ^7.0.0 || ^8.0.1 7515 - webpack: ^5.0.0 7516 - dependencies: 7517 - cosmiconfig: 7.1.0 7518 - klona: 2.0.6 7519 - postcss: 8.4.23 7520 - semver: 7.5.0 7521 - webpack: 5.80.0 7522 - dev: false 7523 - 7524 - /postcss-logical@5.0.4(postcss@8.4.23): 7525 - resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} 7526 - engines: {node: ^12 || ^14 || >=16} 7527 - peerDependencies: 7528 - postcss: ^8.4 7529 - dependencies: 7530 - postcss: 8.4.23 7531 - dev: false 7532 - 7533 - /postcss-media-minmax@5.0.0(postcss@8.4.23): 7534 - resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} 7535 - engines: {node: '>=10.0.0'} 7536 - peerDependencies: 7537 - postcss: ^8.1.0 7538 - dependencies: 7539 - postcss: 8.4.23 7540 - dev: false 7541 - 7542 - /postcss-merge-longhand@5.1.7(postcss@8.4.23): 7543 - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} 7544 - engines: {node: ^10 || ^12 || >=14.0} 7545 - peerDependencies: 7546 - postcss: ^8.2.15 7547 - dependencies: 7548 - postcss: 8.4.23 7549 - postcss-value-parser: 4.2.0 7550 - stylehacks: 5.1.1(postcss@8.4.23) 7551 - dev: false 7552 - 7553 - /postcss-merge-rules@5.1.4(postcss@8.4.23): 7554 - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} 7555 - engines: {node: ^10 || ^12 || >=14.0} 7556 - peerDependencies: 7557 - postcss: ^8.2.15 7558 - dependencies: 7559 - browserslist: 4.21.5 7560 - caniuse-api: 3.0.0 7561 - cssnano-utils: 3.1.0(postcss@8.4.23) 7562 - postcss: 8.4.23 7563 - postcss-selector-parser: 6.0.11 7564 - dev: false 7565 - 7566 - /postcss-minify-font-values@5.1.0(postcss@8.4.23): 7567 - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} 7568 - engines: {node: ^10 || ^12 || >=14.0} 7569 - peerDependencies: 7570 - postcss: ^8.2.15 7571 - dependencies: 7572 - postcss: 8.4.23 7573 - postcss-value-parser: 4.2.0 7574 - dev: false 7575 - 7576 - /postcss-minify-gradients@5.1.1(postcss@8.4.23): 7577 - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} 7578 - engines: {node: ^10 || ^12 || >=14.0} 7579 - peerDependencies: 7580 - postcss: ^8.2.15 7581 - dependencies: 7582 - colord: 2.9.3 7583 - cssnano-utils: 3.1.0(postcss@8.4.23) 7584 - postcss: 8.4.23 7585 - postcss-value-parser: 4.2.0 7586 - dev: false 7587 - 7588 - /postcss-minify-params@5.1.4(postcss@8.4.23): 7589 - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} 7590 - engines: {node: ^10 || ^12 || >=14.0} 7591 - peerDependencies: 7592 - postcss: ^8.2.15 7593 - dependencies: 7594 - browserslist: 4.21.5 7595 - cssnano-utils: 3.1.0(postcss@8.4.23) 7596 - postcss: 8.4.23 7597 - postcss-value-parser: 4.2.0 7598 - dev: false 7599 - 7600 - /postcss-minify-selectors@5.2.1(postcss@8.4.23): 7601 - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} 7602 - engines: {node: ^10 || ^12 || >=14.0} 7603 - peerDependencies: 7604 - postcss: ^8.2.15 7605 - dependencies: 7606 - postcss: 8.4.23 7607 - postcss-selector-parser: 6.0.11 7608 - dev: false 7609 - 7610 - /postcss-modules-extract-imports@3.0.0(postcss@8.4.23): 7611 - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} 7612 - engines: {node: ^10 || ^12 || >= 14} 7613 - peerDependencies: 7614 - postcss: ^8.1.0 7615 - dependencies: 7616 - postcss: 8.4.23 7617 - dev: false 7618 - 7619 - /postcss-modules-local-by-default@4.0.0(postcss@8.4.23): 7620 - resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} 7621 - engines: {node: ^10 || ^12 || >= 14} 7622 - peerDependencies: 7623 - postcss: ^8.1.0 7624 - dependencies: 7625 - icss-utils: 5.1.0(postcss@8.4.23) 7626 - postcss: 8.4.23 7627 - postcss-selector-parser: 6.0.11 7628 - postcss-value-parser: 4.2.0 7629 - dev: false 7630 - 7631 - /postcss-modules-scope@3.0.0(postcss@8.4.23): 7632 - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} 7633 - engines: {node: ^10 || ^12 || >= 14} 7634 - peerDependencies: 7635 - postcss: ^8.1.0 7636 - dependencies: 7637 - postcss: 8.4.23 7638 - postcss-selector-parser: 6.0.11 7639 - dev: false 7640 - 7641 - /postcss-modules-values@4.0.0(postcss@8.4.23): 7642 - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} 7643 - engines: {node: ^10 || ^12 || >= 14} 7644 - peerDependencies: 7645 - postcss: ^8.1.0 7646 - dependencies: 7647 - icss-utils: 5.1.0(postcss@8.4.23) 7648 - postcss: 8.4.23 7649 - dev: false 7650 - 7651 - /postcss-nested@6.0.0(postcss@8.4.23): 7652 - resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} 7653 - engines: {node: '>=12.0'} 7654 - peerDependencies: 7655 - postcss: ^8.2.14 7656 - dependencies: 7657 - postcss: 8.4.23 7658 - postcss-selector-parser: 6.0.11 7659 - dev: false 7660 - 7661 - /postcss-nesting@10.2.0(postcss@8.4.23): 7662 - resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} 7663 - engines: {node: ^12 || ^14 || >=16} 7664 - peerDependencies: 7665 - postcss: ^8.2 7666 - dependencies: 7667 - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11) 7668 - postcss: 8.4.23 7669 - postcss-selector-parser: 6.0.11 7670 - dev: false 7671 - 7672 - /postcss-normalize-charset@5.1.0(postcss@8.4.23): 7673 - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} 7674 - engines: {node: ^10 || ^12 || >=14.0} 7675 - peerDependencies: 7676 - postcss: ^8.2.15 7677 - dependencies: 7678 - postcss: 8.4.23 7679 - dev: false 7680 - 7681 - /postcss-normalize-display-values@5.1.0(postcss@8.4.23): 7682 - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} 7683 - engines: {node: ^10 || ^12 || >=14.0} 7684 - peerDependencies: 7685 - postcss: ^8.2.15 7686 - dependencies: 7687 - postcss: 8.4.23 7688 - postcss-value-parser: 4.2.0 7689 - dev: false 7690 - 7691 - /postcss-normalize-positions@5.1.1(postcss@8.4.23): 7692 - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} 7693 - engines: {node: ^10 || ^12 || >=14.0} 7694 - peerDependencies: 7695 - postcss: ^8.2.15 7696 - dependencies: 7697 - postcss: 8.4.23 7698 - postcss-value-parser: 4.2.0 7699 - dev: false 7700 - 7701 - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.23): 7702 - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} 7703 - engines: {node: ^10 || ^12 || >=14.0} 7704 - peerDependencies: 7705 - postcss: ^8.2.15 7706 - dependencies: 7707 - postcss: 8.4.23 7708 - postcss-value-parser: 4.2.0 7709 - dev: false 7710 - 7711 - /postcss-normalize-string@5.1.0(postcss@8.4.23): 7712 - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} 7713 - engines: {node: ^10 || ^12 || >=14.0} 7714 - peerDependencies: 7715 - postcss: ^8.2.15 7716 - dependencies: 7717 - postcss: 8.4.23 7718 - postcss-value-parser: 4.2.0 7719 - dev: false 7720 - 7721 - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.23): 7722 - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} 7723 - engines: {node: ^10 || ^12 || >=14.0} 7724 - peerDependencies: 7725 - postcss: ^8.2.15 7726 - dependencies: 7727 - postcss: 8.4.23 7728 - postcss-value-parser: 4.2.0 7729 - dev: false 7730 - 7731 - /postcss-normalize-unicode@5.1.1(postcss@8.4.23): 7732 - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} 7733 - engines: {node: ^10 || ^12 || >=14.0} 7734 - peerDependencies: 7735 - postcss: ^8.2.15 7736 - dependencies: 7737 - browserslist: 4.21.5 7738 - postcss: 8.4.23 7739 - postcss-value-parser: 4.2.0 7740 - dev: false 7741 - 7742 - /postcss-normalize-url@5.1.0(postcss@8.4.23): 7743 - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} 7744 - engines: {node: ^10 || ^12 || >=14.0} 7745 - peerDependencies: 7746 - postcss: ^8.2.15 7747 - dependencies: 7748 - normalize-url: 6.1.0 7749 - postcss: 8.4.23 7750 - postcss-value-parser: 4.2.0 7751 - dev: false 7752 - 7753 - /postcss-normalize-whitespace@5.1.1(postcss@8.4.23): 7754 - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} 7755 - engines: {node: ^10 || ^12 || >=14.0} 7756 - peerDependencies: 7757 - postcss: ^8.2.15 7758 - dependencies: 7759 - postcss: 8.4.23 7760 - postcss-value-parser: 4.2.0 7761 - dev: false 7762 - 7763 - /postcss-normalize@10.0.1(browserslist@4.21.5)(postcss@8.4.23): 7764 - resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} 7765 - engines: {node: '>= 12'} 7766 - peerDependencies: 7767 - browserslist: '>= 4' 7768 - postcss: '>= 8' 7769 - dependencies: 7770 - '@csstools/normalize.css': 12.0.0 7771 - browserslist: 4.21.5 7772 - postcss: 8.4.23 7773 - postcss-browser-comments: 4.0.0(browserslist@4.21.5)(postcss@8.4.23) 7774 - sanitize.css: 13.0.0 7775 - dev: false 7776 - 7777 - /postcss-opacity-percentage@1.1.3(postcss@8.4.23): 7778 - resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} 7779 - engines: {node: ^12 || ^14 || >=16} 7780 - peerDependencies: 7781 - postcss: ^8.2 7782 - dependencies: 7783 - postcss: 8.4.23 7784 - dev: false 7785 - 7786 - /postcss-ordered-values@5.1.3(postcss@8.4.23): 7787 - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} 7788 - engines: {node: ^10 || ^12 || >=14.0} 7789 - peerDependencies: 7790 - postcss: ^8.2.15 7791 - dependencies: 7792 - cssnano-utils: 3.1.0(postcss@8.4.23) 7793 - postcss: 8.4.23 7794 - postcss-value-parser: 4.2.0 7795 - dev: false 7796 - 7797 - /postcss-overflow-shorthand@3.0.4(postcss@8.4.23): 7798 - resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} 7799 - engines: {node: ^12 || ^14 || >=16} 7800 - peerDependencies: 7801 - postcss: ^8.2 7802 - dependencies: 7803 - postcss: 8.4.23 7804 - postcss-value-parser: 4.2.0 7805 - dev: false 7806 - 7807 - /postcss-page-break@3.0.4(postcss@8.4.23): 7808 - resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} 7809 - peerDependencies: 7810 - postcss: ^8 7811 - dependencies: 7812 - postcss: 8.4.23 7813 - dev: false 7814 - 7815 - /postcss-place@7.0.5(postcss@8.4.23): 7816 - resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} 7817 - engines: {node: ^12 || ^14 || >=16} 7818 - peerDependencies: 7819 - postcss: ^8.2 7820 - dependencies: 7821 - postcss: 8.4.23 7822 - postcss-value-parser: 4.2.0 7823 - dev: false 7824 - 7825 - /postcss-preset-env@7.8.3(postcss@8.4.23): 7826 - resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} 7827 - engines: {node: ^12 || ^14 || >=16} 7828 - peerDependencies: 7829 - postcss: ^8.2 7830 - dependencies: 7831 - '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.23) 7832 - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.23) 7833 - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.23) 7834 - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.23) 7835 - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.23) 7836 - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.23) 7837 - '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.23) 7838 - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.23) 7839 - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.23) 7840 - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.23) 7841 - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.23) 7842 - '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.23) 7843 - '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.23) 7844 - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.23) 7845 - autoprefixer: 10.4.14(postcss@8.4.23) 7846 - browserslist: 4.21.5 7847 - css-blank-pseudo: 3.0.3(postcss@8.4.23) 7848 - css-has-pseudo: 3.0.4(postcss@8.4.23) 7849 - css-prefers-color-scheme: 6.0.3(postcss@8.4.23) 7850 - cssdb: 7.5.4 7851 - postcss: 8.4.23 7852 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.23) 7853 - postcss-clamp: 4.1.0(postcss@8.4.23) 7854 - postcss-color-functional-notation: 4.2.4(postcss@8.4.23) 7855 - postcss-color-hex-alpha: 8.0.4(postcss@8.4.23) 7856 - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.23) 7857 - postcss-custom-media: 8.0.2(postcss@8.4.23) 7858 - postcss-custom-properties: 12.1.11(postcss@8.4.23) 7859 - postcss-custom-selectors: 6.0.3(postcss@8.4.23) 7860 - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.23) 7861 - postcss-double-position-gradients: 3.1.2(postcss@8.4.23) 7862 - postcss-env-function: 4.0.6(postcss@8.4.23) 7863 - postcss-focus-visible: 6.0.4(postcss@8.4.23) 7864 - postcss-focus-within: 5.0.4(postcss@8.4.23) 7865 - postcss-font-variant: 5.0.0(postcss@8.4.23) 7866 - postcss-gap-properties: 3.0.5(postcss@8.4.23) 7867 - postcss-image-set-function: 4.0.7(postcss@8.4.23) 7868 - postcss-initial: 4.0.1(postcss@8.4.23) 7869 - postcss-lab-function: 4.2.1(postcss@8.4.23) 7870 - postcss-logical: 5.0.4(postcss@8.4.23) 7871 - postcss-media-minmax: 5.0.0(postcss@8.4.23) 7872 - postcss-nesting: 10.2.0(postcss@8.4.23) 7873 - postcss-opacity-percentage: 1.1.3(postcss@8.4.23) 7874 - postcss-overflow-shorthand: 3.0.4(postcss@8.4.23) 7875 - postcss-page-break: 3.0.4(postcss@8.4.23) 7876 - postcss-place: 7.0.5(postcss@8.4.23) 7877 - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.23) 7878 - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.23) 7879 - postcss-selector-not: 6.0.1(postcss@8.4.23) 7880 - postcss-value-parser: 4.2.0 7881 - dev: false 7882 - 7883 - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.23): 7884 - resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} 7885 - engines: {node: ^12 || ^14 || >=16} 7886 - peerDependencies: 7887 - postcss: ^8.2 7888 - dependencies: 7889 - postcss: 8.4.23 7890 - postcss-selector-parser: 6.0.11 7891 - dev: false 7892 - 7893 - /postcss-reduce-initial@5.1.2(postcss@8.4.23): 7894 - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} 7895 - engines: {node: ^10 || ^12 || >=14.0} 7896 - peerDependencies: 7897 - postcss: ^8.2.15 7898 - dependencies: 7899 - browserslist: 4.21.5 7900 - caniuse-api: 3.0.0 7901 - postcss: 8.4.23 7902 - dev: false 7903 - 7904 - /postcss-reduce-transforms@5.1.0(postcss@8.4.23): 7905 - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} 7906 - engines: {node: ^10 || ^12 || >=14.0} 7907 - peerDependencies: 7908 - postcss: ^8.2.15 7909 - dependencies: 7910 - postcss: 8.4.23 7911 - postcss-value-parser: 4.2.0 7912 - dev: false 7913 - 7914 - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.23): 7915 - resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} 7916 - peerDependencies: 7917 - postcss: ^8.0.3 7918 - dependencies: 7919 - postcss: 8.4.23 7920 - dev: false 7921 - 7922 - /postcss-selector-not@6.0.1(postcss@8.4.23): 7923 - resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} 7924 - engines: {node: ^12 || ^14 || >=16} 7925 - peerDependencies: 7926 - postcss: ^8.2 7927 - dependencies: 7928 - postcss: 8.4.23 7929 - postcss-selector-parser: 6.0.11 7930 - dev: false 7931 - 7932 - /postcss-selector-parser@6.0.11: 7933 - resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} 7934 - engines: {node: '>=4'} 7935 - dependencies: 7936 - cssesc: 3.0.0 7937 - util-deprecate: 1.0.2 7938 - dev: false 7939 - 7940 - /postcss-svgo@5.1.0(postcss@8.4.23): 7941 - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} 7942 - engines: {node: ^10 || ^12 || >=14.0} 7943 - peerDependencies: 7944 - postcss: ^8.2.15 7945 - dependencies: 7946 - postcss: 8.4.23 7947 - postcss-value-parser: 4.2.0 7948 - svgo: 2.8.0 7949 - dev: false 7950 - 7951 - /postcss-unique-selectors@5.1.1(postcss@8.4.23): 7952 - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} 7953 - engines: {node: ^10 || ^12 || >=14.0} 7954 - peerDependencies: 7955 - postcss: ^8.2.15 7956 - dependencies: 7957 - postcss: 8.4.23 7958 - postcss-selector-parser: 6.0.11 7959 - dev: false 7960 - 7961 - /postcss-value-parser@4.2.0: 7962 - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 7963 - dev: false 7964 - 7965 - /postcss@7.0.39: 7966 - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} 7967 - engines: {node: '>=6.0.0'} 7968 - dependencies: 7969 - picocolors: 0.2.1 7970 - source-map: 0.6.1 7971 - dev: false 1333 + dev: true 7972 1334 7973 1335 /postcss@8.4.23: 7974 1336 resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==} ··· 7977 1339 nanoid: 3.3.6 7978 1340 picocolors: 1.0.0 7979 1341 source-map-js: 1.0.2 7980 - dev: false 7981 - 7982 - /prelude-ls@1.1.2: 7983 - resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} 7984 - engines: {node: '>= 0.8.0'} 7985 - dev: false 1342 + dev: true 7986 1343 7987 1344 /prelude-ls@1.2.1: 7988 1345 resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 7989 1346 engines: {node: '>= 0.8.0'} 7990 - 7991 - /prettier@2.8.7: 7992 - resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} 7993 - engines: {node: '>=10.13.0'} 7994 - hasBin: true 7995 1347 dev: true 7996 1348 7997 - /pretty-bytes@5.6.0: 7998 - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} 7999 - engines: {node: '>=6'} 8000 - dev: false 8001 - 8002 - /pretty-error@4.0.0: 8003 - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} 8004 - dependencies: 8005 - lodash: 4.17.21 8006 - renderkid: 3.0.0 8007 - dev: false 8008 - 8009 - /pretty-format@27.5.1: 8010 - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} 8011 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 8012 - dependencies: 8013 - ansi-regex: 5.0.1 8014 - ansi-styles: 5.2.0 8015 - react-is: 17.0.2 8016 - dev: false 8017 - 8018 - /pretty-format@28.1.3: 8019 - resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} 8020 - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 8021 - dependencies: 8022 - '@jest/schemas': 28.1.3 8023 - ansi-regex: 5.0.1 8024 - ansi-styles: 5.2.0 8025 - react-is: 18.2.0 8026 - dev: false 8027 - 8028 - /process-nextick-args@2.0.1: 8029 - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 8030 - dev: false 8031 - 8032 - /promise@8.3.0: 8033 - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} 8034 - dependencies: 8035 - asap: 2.0.6 8036 - dev: false 8037 - 8038 - /prompts@2.4.2: 8039 - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 8040 - engines: {node: '>= 6'} 8041 - dependencies: 8042 - kleur: 3.0.3 8043 - sisteransi: 1.0.5 8044 - dev: false 8045 - 8046 1349 /prop-types@15.8.1: 8047 1350 resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 8048 1351 dependencies: ··· 8051 1354 react-is: 16.13.1 8052 1355 dev: false 8053 1356 8054 - /proxy-addr@2.0.7: 8055 - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 8056 - engines: {node: '>= 0.10'} 8057 - dependencies: 8058 - forwarded: 0.2.0 8059 - ipaddr.js: 1.9.1 8060 - dev: false 8061 - 8062 - /psl@1.9.0: 8063 - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} 8064 - dev: false 8065 - 8066 1357 /punycode@2.3.0: 8067 1358 resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 8068 1359 engines: {node: '>=6'} 8069 - 8070 - /q@1.5.1: 8071 - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} 8072 - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} 8073 - dev: false 8074 - 8075 - /qs@6.11.0: 8076 - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} 8077 - engines: {node: '>=0.6'} 8078 - dependencies: 8079 - side-channel: 1.0.4 8080 - dev: false 8081 - 8082 - /querystringify@2.2.0: 8083 - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} 8084 - dev: false 1360 + dev: true 8085 1361 8086 1362 /queue-microtask@1.2.3: 8087 1363 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 8088 - 8089 - /quick-lru@5.1.1: 8090 - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 8091 - engines: {node: '>=10'} 8092 - dev: false 8093 - 8094 - /raf@3.4.1: 8095 - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} 8096 - dependencies: 8097 - performance-now: 2.1.0 8098 - dev: false 8099 - 8100 - /randombytes@2.1.0: 8101 - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 8102 - dependencies: 8103 - safe-buffer: 5.2.1 8104 - dev: false 8105 - 8106 - /range-parser@1.2.1: 8107 - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 8108 - engines: {node: '>= 0.6'} 8109 - dev: false 8110 - 8111 - /raw-body@2.5.1: 8112 - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} 8113 - engines: {node: '>= 0.8'} 8114 - dependencies: 8115 - bytes: 3.1.2 8116 - http-errors: 2.0.0 8117 - iconv-lite: 0.4.24 8118 - unpipe: 1.0.0 8119 - dev: false 8120 - 8121 - /react-app-polyfill@3.0.0: 8122 - resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} 8123 - engines: {node: '>=14'} 8124 - dependencies: 8125 - core-js: 3.30.1 8126 - object-assign: 4.1.1 8127 - promise: 8.3.0 8128 - raf: 3.4.1 8129 - regenerator-runtime: 0.13.11 8130 - whatwg-fetch: 3.6.2 8131 - dev: false 1364 + dev: true 8132 1365 8133 1366 /react-calendar-heatmap@1.9.0(react@18.2.0): 8134 1367 resolution: {integrity: sha512-mGed9any6QLOVckxwxC/eeP9s9wE8mTUW/FCE0V27xF9WOaCGuOftGSRH8DSDoSwgzMSVF6uuH7M1xvc+aZ8sg==} ··· 8140 1373 react: 18.2.0 8141 1374 dev: false 8142 1375 8143 - /react-dev-utils@12.0.1(eslint@8.38.0)(typescript@4.9.5)(webpack@5.80.0): 8144 - resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} 8145 - engines: {node: '>=14'} 8146 - peerDependencies: 8147 - typescript: '>=2.7' 8148 - webpack: '>=4' 8149 - peerDependenciesMeta: 8150 - typescript: 8151 - optional: true 8152 - dependencies: 8153 - '@babel/code-frame': 7.21.4 8154 - address: 1.2.2 8155 - browserslist: 4.21.5 8156 - chalk: 4.1.2 8157 - cross-spawn: 7.0.3 8158 - detect-port-alt: 1.1.6 8159 - escape-string-regexp: 4.0.0 8160 - filesize: 8.0.7 8161 - find-up: 5.0.0 8162 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.38.0)(typescript@4.9.5)(webpack@5.80.0) 8163 - global-modules: 2.0.0 8164 - globby: 11.1.0 8165 - gzip-size: 6.0.0 8166 - immer: 9.0.21 8167 - is-root: 2.1.0 8168 - loader-utils: 3.2.1 8169 - open: 8.4.2 8170 - pkg-up: 3.1.0 8171 - prompts: 2.4.2 8172 - react-error-overlay: 6.0.11 8173 - recursive-readdir: 2.2.3 8174 - shell-quote: 1.8.1 8175 - strip-ansi: 6.0.1 8176 - text-table: 0.2.0 8177 - typescript: 4.9.5 8178 - webpack: 5.80.0 8179 - transitivePeerDependencies: 8180 - - eslint 8181 - - supports-color 8182 - - vue-template-compiler 8183 - dev: false 8184 - 8185 1376 /react-dom@18.2.0(react@18.2.0): 8186 1377 resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 8187 1378 peerDependencies: ··· 8192 1383 scheduler: 0.23.0 8193 1384 dev: false 8194 1385 8195 - /react-error-overlay@6.0.11: 8196 - resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} 8197 - dev: false 8198 - 8199 1386 /react-is@16.13.1: 8200 1387 resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 8201 1388 dev: false 8202 1389 8203 - /react-is@17.0.2: 8204 - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 8205 - dev: false 8206 - 8207 - /react-is@18.2.0: 8208 - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} 8209 - dev: false 8210 - 8211 - /react-refresh@0.11.0: 8212 - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} 8213 - engines: {node: '>=0.10.0'} 8214 - dev: false 8215 - 8216 - /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0)(react@18.2.0)(typescript@4.9.5): 8217 - resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} 8218 - engines: {node: '>=14.0.0'} 8219 - hasBin: true 8220 - peerDependencies: 8221 - eslint: '*' 8222 - react: '>= 16' 8223 - typescript: ^3.2.1 || ^4 8224 - peerDependenciesMeta: 8225 - typescript: 8226 - optional: true 8227 - dependencies: 8228 - '@babel/core': 7.21.4 8229 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.13.3)(webpack@5.80.0) 8230 - '@svgr/webpack': 5.5.0 8231 - babel-jest: 27.5.1(@babel/core@7.21.4) 8232 - babel-loader: 8.3.0(@babel/core@7.21.4)(webpack@5.80.0) 8233 - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.21.4) 8234 - babel-preset-react-app: 10.0.1 8235 - bfj: 7.0.2 8236 - browserslist: 4.21.5 8237 - camelcase: 6.3.0 8238 - case-sensitive-paths-webpack-plugin: 2.4.0 8239 - css-loader: 6.7.3(webpack@5.80.0) 8240 - css-minimizer-webpack-plugin: 3.4.1(webpack@5.80.0) 8241 - dotenv: 10.0.0 8242 - dotenv-expand: 5.1.0 8243 - eslint: 8.38.0 8244 - eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.21.4)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.38.0)(jest@27.5.1)(typescript@4.9.5) 8245 - eslint-webpack-plugin: 3.2.0(eslint@8.38.0)(webpack@5.80.0) 8246 - file-loader: 6.2.0(webpack@5.80.0) 8247 - fs-extra: 10.1.0 8248 - html-webpack-plugin: 5.5.1(webpack@5.80.0) 8249 - identity-obj-proxy: 3.0.0 8250 - jest: 27.5.1 8251 - jest-resolve: 27.5.1 8252 - jest-watch-typeahead: 1.1.0(jest@27.5.1) 8253 - mini-css-extract-plugin: 2.7.5(webpack@5.80.0) 8254 - postcss: 8.4.23 8255 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.23) 8256 - postcss-loader: 6.2.1(postcss@8.4.23)(webpack@5.80.0) 8257 - postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.23) 8258 - postcss-preset-env: 7.8.3(postcss@8.4.23) 8259 - prompts: 2.4.2 8260 - react: 18.2.0 8261 - react-app-polyfill: 3.0.0 8262 - react-dev-utils: 12.0.1(eslint@8.38.0)(typescript@4.9.5)(webpack@5.80.0) 8263 - react-refresh: 0.11.0 8264 - resolve: 1.22.2 8265 - resolve-url-loader: 4.0.0 8266 - sass-loader: 12.6.0(webpack@5.80.0) 8267 - semver: 7.5.0 8268 - source-map-loader: 3.0.2(webpack@5.80.0) 8269 - style-loader: 3.3.2(webpack@5.80.0) 8270 - tailwindcss: 3.3.1(postcss@8.4.23) 8271 - terser-webpack-plugin: 5.3.7(webpack@5.80.0) 8272 - typescript: 4.9.5 8273 - webpack: 5.80.0 8274 - webpack-dev-server: 4.13.3(webpack@5.80.0) 8275 - webpack-manifest-plugin: 4.1.1(webpack@5.80.0) 8276 - workbox-webpack-plugin: 6.5.4(webpack@5.80.0) 8277 - optionalDependencies: 8278 - fsevents: 2.3.2 8279 - transitivePeerDependencies: 8280 - - '@babel/plugin-syntax-flow' 8281 - - '@babel/plugin-transform-react-jsx' 8282 - - '@parcel/css' 8283 - - '@swc/core' 8284 - - '@types/babel__core' 8285 - - '@types/webpack' 8286 - - bufferutil 8287 - - canvas 8288 - - clean-css 8289 - - csso 8290 - - debug 8291 - - esbuild 8292 - - eslint-import-resolver-typescript 8293 - - eslint-import-resolver-webpack 8294 - - fibers 8295 - - node-notifier 8296 - - node-sass 8297 - - rework 8298 - - rework-visit 8299 - - sass 8300 - - sass-embedded 8301 - - sockjs-client 8302 - - supports-color 8303 - - ts-node 8304 - - type-fest 8305 - - uglify-js 8306 - - utf-8-validate 8307 - - vue-template-compiler 8308 - - webpack-cli 8309 - - webpack-hot-middleware 8310 - - webpack-plugin-serve 8311 - dev: false 8312 - 8313 1390 /react-tooltip@5.11.1(react-dom@18.2.0)(react@18.2.0): 8314 1391 resolution: {integrity: sha512-+2a/DvmOlPQd5e1f3s32E/+vv4Tv4UmPxZfCyeVr4BeY3SRCEKGHiE36jH+UtqxSuRP9TKviwmhow4gNDRXCMQ==} 8315 1392 peerDependencies: ··· 8329 1406 loose-envify: 1.4.0 8330 1407 dev: false 8331 1408 8332 - /read-cache@1.0.0: 8333 - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 8334 - dependencies: 8335 - pify: 2.3.0 8336 - dev: false 8337 - 8338 - /readable-stream@2.3.8: 8339 - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 8340 - dependencies: 8341 - core-util-is: 1.0.3 8342 - inherits: 2.0.4 8343 - isarray: 1.0.0 8344 - process-nextick-args: 2.0.1 8345 - safe-buffer: 5.1.2 8346 - string_decoder: 1.1.1 8347 - util-deprecate: 1.0.2 8348 - dev: false 8349 - 8350 - /readable-stream@3.6.2: 8351 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 8352 - engines: {node: '>= 6'} 8353 - dependencies: 8354 - inherits: 2.0.4 8355 - string_decoder: 1.3.0 8356 - util-deprecate: 1.0.2 8357 - dev: false 8358 - 8359 - /readdirp@3.6.0: 8360 - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 8361 - engines: {node: '>=8.10.0'} 8362 - dependencies: 8363 - picomatch: 2.3.1 8364 - dev: false 8365 - 8366 - /recursive-readdir@2.2.3: 8367 - resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} 8368 - engines: {node: '>=6.0.0'} 8369 - dependencies: 8370 - minimatch: 3.1.2 8371 - dev: false 8372 - 8373 - /regenerate-unicode-properties@10.1.0: 8374 - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} 8375 - engines: {node: '>=4'} 8376 - dependencies: 8377 - regenerate: 1.4.2 8378 - dev: false 8379 - 8380 - /regenerate@1.4.2: 8381 - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} 8382 - dev: false 8383 - 8384 - /regenerator-runtime@0.13.11: 8385 - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 8386 - dev: false 8387 - 8388 - /regenerator-transform@0.15.1: 8389 - resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} 8390 - dependencies: 8391 - '@babel/runtime': 7.21.0 8392 - dev: false 8393 - 8394 - /regex-parser@2.2.11: 8395 - resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} 8396 - dev: false 8397 - 8398 - /regexp.prototype.flags@1.5.0: 8399 - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 8400 - engines: {node: '>= 0.4'} 8401 - dependencies: 8402 - call-bind: 1.0.2 8403 - define-properties: 1.2.0 8404 - functions-have-names: 1.2.3 8405 - dev: false 8406 - 8407 - /regexpu-core@5.3.2: 8408 - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} 8409 - engines: {node: '>=4'} 8410 - dependencies: 8411 - '@babel/regjsgen': 0.8.0 8412 - regenerate: 1.4.2 8413 - regenerate-unicode-properties: 10.1.0 8414 - regjsparser: 0.9.1 8415 - unicode-match-property-ecmascript: 2.0.0 8416 - unicode-match-property-value-ecmascript: 2.1.0 8417 - dev: false 8418 - 8419 - /regjsparser@0.9.1: 8420 - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} 8421 - hasBin: true 8422 - dependencies: 8423 - jsesc: 0.5.0 8424 - dev: false 8425 - 8426 - /relateurl@0.2.7: 8427 - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} 8428 - engines: {node: '>= 0.10'} 8429 - dev: false 8430 - 8431 - /renderkid@3.0.0: 8432 - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} 8433 - dependencies: 8434 - css-select: 4.3.0 8435 - dom-converter: 0.2.0 8436 - htmlparser2: 6.1.0 8437 - lodash: 4.17.21 8438 - strip-ansi: 6.0.1 8439 - dev: false 8440 - 8441 - /require-directory@2.1.1: 8442 - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 8443 - engines: {node: '>=0.10.0'} 8444 - dev: false 8445 - 8446 - /require-from-string@2.0.2: 8447 - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 8448 - engines: {node: '>=0.10.0'} 8449 - dev: false 8450 - 8451 - /requires-port@1.0.0: 8452 - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} 8453 - dev: false 8454 - 8455 - /resolve-cwd@3.0.0: 8456 - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} 8457 - engines: {node: '>=8'} 8458 - dependencies: 8459 - resolve-from: 5.0.0 8460 - dev: false 8461 - 8462 1409 /resolve-from@4.0.0: 8463 1410 resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 8464 1411 engines: {node: '>=4'} 8465 - 8466 - /resolve-from@5.0.0: 8467 - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 8468 - engines: {node: '>=8'} 8469 - dev: false 8470 - 8471 - /resolve-url-loader@4.0.0: 8472 - resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==} 8473 - engines: {node: '>=8.9'} 8474 - peerDependencies: 8475 - rework: 1.0.1 8476 - rework-visit: 1.0.0 8477 - peerDependenciesMeta: 8478 - rework: 8479 - optional: true 8480 - rework-visit: 8481 - optional: true 8482 - dependencies: 8483 - adjust-sourcemap-loader: 4.0.0 8484 - convert-source-map: 1.9.0 8485 - loader-utils: 2.0.4 8486 - postcss: 7.0.39 8487 - source-map: 0.6.1 8488 - dev: false 8489 - 8490 - /resolve.exports@1.1.1: 8491 - resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} 8492 - engines: {node: '>=10'} 8493 - dev: false 8494 - 8495 - /resolve@1.22.2: 8496 - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} 8497 - hasBin: true 8498 - dependencies: 8499 - is-core-module: 2.12.0 8500 - path-parse: 1.0.7 8501 - supports-preserve-symlinks-flag: 1.0.0 8502 - dev: false 8503 - 8504 - /resolve@2.0.0-next.4: 8505 - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 8506 - hasBin: true 8507 - dependencies: 8508 - is-core-module: 2.12.0 8509 - path-parse: 1.0.7 8510 - supports-preserve-symlinks-flag: 1.0.0 8511 - dev: false 8512 - 8513 - /retry@0.13.1: 8514 - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} 8515 - engines: {node: '>= 4'} 8516 - dev: false 1412 + dev: true 8517 1413 8518 1414 /reusify@1.0.4: 8519 1415 resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 8520 1416 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1417 + dev: true 8521 1418 8522 1419 /rimraf@3.0.2: 8523 1420 resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 8524 1421 hasBin: true 8525 1422 dependencies: 8526 1423 glob: 7.2.3 1424 + dev: true 8527 1425 8528 - /rollup-plugin-terser@7.0.2(rollup@2.79.1): 8529 - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} 8530 - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser 8531 - peerDependencies: 8532 - rollup: ^2.0.0 8533 - dependencies: 8534 - '@babel/code-frame': 7.21.4 8535 - jest-worker: 26.6.2 8536 - rollup: 2.79.1 8537 - serialize-javascript: 4.0.0 8538 - terser: 5.17.1 8539 - dev: false 8540 - 8541 - /rollup@2.79.1: 8542 - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} 8543 - engines: {node: '>=10.0.0'} 1426 + /rollup@3.20.7: 1427 + resolution: {integrity: sha512-P7E2zezKSLhWnTz46XxjSmInrbOCiul1yf+kJccMxT56vxjHwCbDfoLbiqFgu+WQoo9ij2PkraYaBstgB2prBA==} 1428 + engines: {node: '>=14.18.0', npm: '>=8.0.0'} 8544 1429 hasBin: true 8545 1430 optionalDependencies: 8546 1431 fsevents: 2.3.2 8547 - dev: false 1432 + dev: true 8548 1433 8549 1434 /run-parallel@1.2.0: 8550 1435 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 8551 1436 dependencies: 8552 1437 queue-microtask: 1.2.3 1438 + dev: true 8553 1439 8554 1440 /rxjs@7.8.0: 8555 1441 resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} ··· 8559 1445 dev: false 8560 1446 optional: true 8561 1447 8562 - /safe-array-concat@1.0.0: 8563 - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} 8564 - engines: {node: '>=0.4'} 8565 - dependencies: 8566 - call-bind: 1.0.2 8567 - get-intrinsic: 1.2.0 8568 - has-symbols: 1.0.3 8569 - isarray: 2.0.5 8570 - dev: false 8571 - 8572 - /safe-buffer@5.1.2: 8573 - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 8574 - dev: false 8575 - 8576 - /safe-buffer@5.2.1: 8577 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 8578 - dev: false 8579 - 8580 - /safe-regex-test@1.0.0: 8581 - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 8582 - dependencies: 8583 - call-bind: 1.0.2 8584 - get-intrinsic: 1.2.0 8585 - is-regex: 1.1.4 8586 - dev: false 8587 - 8588 - /safer-buffer@2.1.2: 8589 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 8590 - dev: false 8591 - 8592 - /sanitize.css@13.0.0: 8593 - resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} 8594 - dev: false 8595 - 8596 - /sass-loader@12.6.0(webpack@5.80.0): 8597 - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} 8598 - engines: {node: '>= 12.13.0'} 8599 - peerDependencies: 8600 - fibers: '>= 3.1.0' 8601 - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 8602 - sass: ^1.3.0 8603 - sass-embedded: '*' 8604 - webpack: ^5.0.0 8605 - peerDependenciesMeta: 8606 - fibers: 8607 - optional: true 8608 - node-sass: 8609 - optional: true 8610 - sass: 8611 - optional: true 8612 - sass-embedded: 8613 - optional: true 8614 - dependencies: 8615 - klona: 2.0.6 8616 - neo-async: 2.6.2 8617 - webpack: 5.80.0 8618 - dev: false 8619 - 8620 - /sax@1.2.4: 8621 - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} 8622 - dev: false 8623 - 8624 - /saxes@5.0.1: 8625 - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} 8626 - engines: {node: '>=10'} 8627 - dependencies: 8628 - xmlchars: 2.2.0 8629 - dev: false 8630 - 8631 1448 /scheduler@0.23.0: 8632 1449 resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 8633 1450 dependencies: 8634 1451 loose-envify: 1.4.0 8635 1452 dev: false 8636 1453 8637 - /schema-utils@2.7.0: 8638 - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} 8639 - engines: {node: '>= 8.9.0'} 8640 - dependencies: 8641 - '@types/json-schema': 7.0.11 8642 - ajv: 6.12.6 8643 - ajv-keywords: 3.5.2(ajv@6.12.6) 8644 - dev: false 8645 - 8646 - /schema-utils@2.7.1: 8647 - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} 8648 - engines: {node: '>= 8.9.0'} 8649 - dependencies: 8650 - '@types/json-schema': 7.0.11 8651 - ajv: 6.12.6 8652 - ajv-keywords: 3.5.2(ajv@6.12.6) 8653 - dev: false 8654 - 8655 - /schema-utils@3.1.2: 8656 - resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==} 8657 - engines: {node: '>= 10.13.0'} 8658 - dependencies: 8659 - '@types/json-schema': 7.0.11 8660 - ajv: 6.12.6 8661 - ajv-keywords: 3.5.2(ajv@6.12.6) 8662 - dev: false 8663 - 8664 - /schema-utils@4.0.1: 8665 - resolution: {integrity: sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==} 8666 - engines: {node: '>= 12.13.0'} 8667 - dependencies: 8668 - '@types/json-schema': 7.0.11 8669 - ajv: 8.12.0 8670 - ajv-formats: 2.1.1(ajv@8.12.0) 8671 - ajv-keywords: 5.1.0(ajv@8.12.0) 8672 - dev: false 8673 - 8674 - /select-hose@2.0.0: 8675 - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} 8676 - dev: false 8677 - 8678 - /selfsigned@2.1.1: 8679 - resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} 8680 - engines: {node: '>=10'} 8681 - dependencies: 8682 - node-forge: 1.3.1 8683 - dev: false 8684 - 8685 - /semver@6.3.0: 8686 - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 8687 - hasBin: true 8688 - dev: false 8689 - 8690 1454 /semver@7.5.0: 8691 1455 resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} 8692 1456 engines: {node: '>=10'} 8693 1457 hasBin: true 8694 1458 dependencies: 8695 1459 lru-cache: 6.0.0 8696 - 8697 - /send@0.18.0: 8698 - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} 8699 - engines: {node: '>= 0.8.0'} 8700 - dependencies: 8701 - debug: 2.6.9 8702 - depd: 2.0.0 8703 - destroy: 1.2.0 8704 - encodeurl: 1.0.2 8705 - escape-html: 1.0.3 8706 - etag: 1.8.1 8707 - fresh: 0.5.2 8708 - http-errors: 2.0.0 8709 - mime: 1.6.0 8710 - ms: 2.1.3 8711 - on-finished: 2.4.1 8712 - range-parser: 1.2.1 8713 - statuses: 2.0.1 8714 - transitivePeerDependencies: 8715 - - supports-color 8716 - dev: false 8717 - 8718 - /serialize-javascript@4.0.0: 8719 - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} 8720 - dependencies: 8721 - randombytes: 2.1.0 8722 - dev: false 8723 - 8724 - /serialize-javascript@6.0.1: 8725 - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} 8726 - dependencies: 8727 - randombytes: 2.1.0 8728 - dev: false 8729 - 8730 - /serve-index@1.9.1: 8731 - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} 8732 - engines: {node: '>= 0.8.0'} 8733 - dependencies: 8734 - accepts: 1.3.8 8735 - batch: 0.6.1 8736 - debug: 2.6.9 8737 - escape-html: 1.0.3 8738 - http-errors: 1.6.3 8739 - mime-types: 2.1.35 8740 - parseurl: 1.3.3 8741 - transitivePeerDependencies: 8742 - - supports-color 8743 - dev: false 8744 - 8745 - /serve-static@1.15.0: 8746 - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} 8747 - engines: {node: '>= 0.8.0'} 8748 - dependencies: 8749 - encodeurl: 1.0.2 8750 - escape-html: 1.0.3 8751 - parseurl: 1.3.3 8752 - send: 0.18.0 8753 - transitivePeerDependencies: 8754 - - supports-color 8755 - dev: false 8756 - 8757 - /setprototypeof@1.1.0: 8758 - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} 8759 - dev: false 8760 - 8761 - /setprototypeof@1.2.0: 8762 - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 8763 - dev: false 1460 + dev: true 8764 1461 8765 1462 /shebang-command@2.0.0: 8766 1463 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 8767 1464 engines: {node: '>=8'} 8768 1465 dependencies: 8769 1466 shebang-regex: 3.0.0 1467 + dev: true 8770 1468 8771 1469 /shebang-regex@3.0.0: 8772 1470 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 8773 1471 engines: {node: '>=8'} 8774 - 8775 - /shell-quote@1.8.1: 8776 - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} 8777 - dev: false 8778 - 8779 - /side-channel@1.0.4: 8780 - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 8781 - dependencies: 8782 - call-bind: 1.0.2 8783 - get-intrinsic: 1.2.0 8784 - object-inspect: 1.12.3 8785 - dev: false 8786 - 8787 - /signal-exit@3.0.7: 8788 - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 8789 - dev: false 8790 - 8791 - /sisteransi@1.0.5: 8792 - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 8793 - dev: false 1472 + dev: true 8794 1473 8795 1474 /slash@3.0.0: 8796 1475 resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 8797 1476 engines: {node: '>=8'} 8798 - 8799 - /slash@4.0.0: 8800 - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 8801 - engines: {node: '>=12'} 8802 - dev: false 8803 - 8804 - /sockjs@0.3.24: 8805 - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} 8806 - dependencies: 8807 - faye-websocket: 0.11.4 8808 - uuid: 8.3.2 8809 - websocket-driver: 0.7.4 8810 - dev: false 8811 - 8812 - /source-list-map@2.0.1: 8813 - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} 8814 - dev: false 1477 + dev: true 8815 1478 8816 1479 /source-map-js@1.0.2: 8817 1480 resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 8818 1481 engines: {node: '>=0.10.0'} 8819 - dev: false 8820 - 8821 - /source-map-loader@3.0.2(webpack@5.80.0): 8822 - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} 8823 - engines: {node: '>= 12.13.0'} 8824 - peerDependencies: 8825 - webpack: ^5.0.0 8826 - dependencies: 8827 - abab: 2.0.6 8828 - iconv-lite: 0.6.3 8829 - source-map-js: 1.0.2 8830 - webpack: 5.80.0 8831 - dev: false 8832 - 8833 - /source-map-support@0.5.21: 8834 - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 8835 - dependencies: 8836 - buffer-from: 1.1.2 8837 - source-map: 0.6.1 8838 - dev: false 8839 - 8840 - /source-map@0.6.1: 8841 - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 8842 - engines: {node: '>=0.10.0'} 8843 - dev: false 8844 - 8845 - /source-map@0.7.4: 8846 - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 8847 - engines: {node: '>= 8'} 8848 - dev: false 8849 - 8850 - /source-map@0.8.0-beta.0: 8851 - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 8852 - engines: {node: '>= 8'} 8853 - dependencies: 8854 - whatwg-url: 7.1.0 8855 - dev: false 8856 - 8857 - /sourcemap-codec@1.4.8: 8858 - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 8859 - deprecated: Please use @jridgewell/sourcemap-codec instead 8860 - dev: false 8861 - 8862 - /spdy-transport@3.0.0: 8863 - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} 8864 - dependencies: 8865 - debug: 4.3.4 8866 - detect-node: 2.1.0 8867 - hpack.js: 2.1.6 8868 - obuf: 1.1.2 8869 - readable-stream: 3.6.2 8870 - wbuf: 1.7.3 8871 - transitivePeerDependencies: 8872 - - supports-color 8873 - dev: false 8874 - 8875 - /spdy@4.0.2: 8876 - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} 8877 - engines: {node: '>=6.0.0'} 8878 - dependencies: 8879 - debug: 4.3.4 8880 - handle-thing: 2.0.1 8881 - http-deceiver: 1.2.7 8882 - select-hose: 2.0.0 8883 - spdy-transport: 3.0.0 8884 - transitivePeerDependencies: 8885 - - supports-color 8886 - dev: false 8887 - 8888 - /sprintf-js@1.0.3: 8889 - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 8890 - dev: false 8891 - 8892 - /stable@0.1.8: 8893 - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} 8894 - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' 8895 - dev: false 8896 - 8897 - /stack-utils@2.0.6: 8898 - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} 8899 - engines: {node: '>=10'} 8900 - dependencies: 8901 - escape-string-regexp: 2.0.0 8902 - dev: false 8903 - 8904 - /stackframe@1.3.4: 8905 - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} 8906 - dev: false 8907 - 8908 - /statuses@1.5.0: 8909 - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} 8910 - engines: {node: '>= 0.6'} 8911 - dev: false 8912 - 8913 - /statuses@2.0.1: 8914 - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 8915 - engines: {node: '>= 0.8'} 8916 - dev: false 8917 - 8918 - /stop-iteration-iterator@1.0.0: 8919 - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 8920 - engines: {node: '>= 0.4'} 8921 - dependencies: 8922 - internal-slot: 1.0.5 8923 - dev: false 8924 - 8925 - /string-length@4.0.2: 8926 - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} 8927 - engines: {node: '>=10'} 8928 - dependencies: 8929 - char-regex: 1.0.2 8930 - strip-ansi: 6.0.1 8931 - dev: false 8932 - 8933 - /string-length@5.0.1: 8934 - resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==} 8935 - engines: {node: '>=12.20'} 8936 - dependencies: 8937 - char-regex: 2.0.1 8938 - strip-ansi: 7.0.1 8939 - dev: false 8940 - 8941 - /string-natural-compare@3.0.1: 8942 - resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} 8943 - dev: false 8944 - 8945 - /string-width@4.2.3: 8946 - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 8947 - engines: {node: '>=8'} 8948 - dependencies: 8949 - emoji-regex: 8.0.0 8950 - is-fullwidth-code-point: 3.0.0 8951 - strip-ansi: 6.0.1 8952 - dev: false 8953 - 8954 - /string.prototype.matchall@4.0.8: 8955 - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 8956 - dependencies: 8957 - call-bind: 1.0.2 8958 - define-properties: 1.2.0 8959 - es-abstract: 1.21.2 8960 - get-intrinsic: 1.2.0 8961 - has-symbols: 1.0.3 8962 - internal-slot: 1.0.5 8963 - regexp.prototype.flags: 1.5.0 8964 - side-channel: 1.0.4 8965 - dev: false 8966 - 8967 - /string.prototype.trim@1.2.7: 8968 - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 8969 - engines: {node: '>= 0.4'} 8970 - dependencies: 8971 - call-bind: 1.0.2 8972 - define-properties: 1.2.0 8973 - es-abstract: 1.21.2 8974 - dev: false 8975 - 8976 - /string.prototype.trimend@1.0.6: 8977 - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 8978 - dependencies: 8979 - call-bind: 1.0.2 8980 - define-properties: 1.2.0 8981 - es-abstract: 1.21.2 8982 - dev: false 8983 - 8984 - /string.prototype.trimstart@1.0.6: 8985 - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 8986 - dependencies: 8987 - call-bind: 1.0.2 8988 - define-properties: 1.2.0 8989 - es-abstract: 1.21.2 8990 - dev: false 8991 - 8992 - /string_decoder@1.1.1: 8993 - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 8994 - dependencies: 8995 - safe-buffer: 5.1.2 8996 - dev: false 8997 - 8998 - /string_decoder@1.3.0: 8999 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 9000 - dependencies: 9001 - safe-buffer: 5.2.1 9002 - dev: false 9003 - 9004 - /stringify-object@3.3.0: 9005 - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} 9006 - engines: {node: '>=4'} 9007 - dependencies: 9008 - get-own-enumerable-property-symbols: 3.0.2 9009 - is-obj: 1.0.1 9010 - is-regexp: 1.0.0 9011 - dev: false 1482 + dev: true 9012 1483 9013 1484 /strip-ansi@6.0.1: 9014 1485 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 9015 1486 engines: {node: '>=8'} 9016 1487 dependencies: 9017 1488 ansi-regex: 5.0.1 9018 - 9019 - /strip-ansi@7.0.1: 9020 - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} 9021 - engines: {node: '>=12'} 9022 - dependencies: 9023 - ansi-regex: 6.0.1 9024 - dev: false 9025 - 9026 - /strip-bom@3.0.0: 9027 - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 9028 - engines: {node: '>=4'} 9029 - dev: false 9030 - 9031 - /strip-bom@4.0.0: 9032 - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} 9033 - engines: {node: '>=8'} 9034 - dev: false 9035 - 9036 - /strip-comments@2.0.1: 9037 - resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} 9038 - engines: {node: '>=10'} 9039 - dev: false 9040 - 9041 - /strip-final-newline@2.0.0: 9042 - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 9043 - engines: {node: '>=6'} 9044 - dev: false 1489 + dev: true 9045 1490 9046 1491 /strip-json-comments@3.1.1: 9047 1492 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 9048 1493 engines: {node: '>=8'} 9049 - 9050 - /style-loader@3.3.2(webpack@5.80.0): 9051 - resolution: {integrity: sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==} 9052 - engines: {node: '>= 12.13.0'} 9053 - peerDependencies: 9054 - webpack: ^5.0.0 9055 - dependencies: 9056 - webpack: 5.80.0 9057 - dev: false 9058 - 9059 - /stylehacks@5.1.1(postcss@8.4.23): 9060 - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} 9061 - engines: {node: ^10 || ^12 || >=14.0} 9062 - peerDependencies: 9063 - postcss: ^8.2.15 9064 - dependencies: 9065 - browserslist: 4.21.5 9066 - postcss: 8.4.23 9067 - postcss-selector-parser: 6.0.11 9068 - dev: false 9069 - 9070 - /sucrase@3.32.0: 9071 - resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} 9072 - engines: {node: '>=8'} 9073 - hasBin: true 9074 - dependencies: 9075 - '@jridgewell/gen-mapping': 0.3.3 9076 - commander: 4.1.1 9077 - glob: 7.1.6 9078 - lines-and-columns: 1.2.4 9079 - mz: 2.7.0 9080 - pirates: 4.0.5 9081 - ts-interface-checker: 0.1.13 9082 - dev: false 9083 - 9084 - /supports-color@5.5.0: 9085 - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 9086 - engines: {node: '>=4'} 9087 - dependencies: 9088 - has-flag: 3.0.0 9089 - dev: false 1494 + dev: true 9090 1495 9091 1496 /supports-color@7.2.0: 9092 1497 resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 9093 1498 engines: {node: '>=8'} 9094 1499 dependencies: 9095 1500 has-flag: 4.0.0 9096 - 9097 - /supports-color@8.1.1: 9098 - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 9099 - engines: {node: '>=10'} 9100 - dependencies: 9101 - has-flag: 4.0.0 9102 - dev: false 9103 - 9104 - /supports-hyperlinks@2.3.0: 9105 - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} 9106 - engines: {node: '>=8'} 9107 - dependencies: 9108 - has-flag: 4.0.0 9109 - supports-color: 7.2.0 9110 - dev: false 9111 - 9112 - /supports-preserve-symlinks-flag@1.0.0: 9113 - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 9114 - engines: {node: '>= 0.4'} 9115 - dev: false 9116 - 9117 - /svg-parser@2.0.4: 9118 - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} 9119 - dev: false 9120 - 9121 - /svgo@1.3.2: 9122 - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} 9123 - engines: {node: '>=4.0.0'} 9124 - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. 9125 - hasBin: true 9126 - dependencies: 9127 - chalk: 2.4.2 9128 - coa: 2.0.2 9129 - css-select: 2.1.0 9130 - css-select-base-adapter: 0.1.1 9131 - css-tree: 1.0.0-alpha.37 9132 - csso: 4.2.0 9133 - js-yaml: 3.14.1 9134 - mkdirp: 0.5.6 9135 - object.values: 1.1.6 9136 - sax: 1.2.4 9137 - stable: 0.1.8 9138 - unquote: 1.1.1 9139 - util.promisify: 1.0.1 9140 - dev: false 9141 - 9142 - /svgo@2.8.0: 9143 - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} 9144 - engines: {node: '>=10.13.0'} 9145 - hasBin: true 9146 - dependencies: 9147 - '@trysound/sax': 0.2.0 9148 - commander: 7.2.0 9149 - css-select: 4.3.0 9150 - css-tree: 1.1.3 9151 - csso: 4.2.0 9152 - picocolors: 1.0.0 9153 - stable: 0.1.8 9154 - dev: false 9155 - 9156 - /symbol-tree@3.2.4: 9157 - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} 9158 - dev: false 9159 - 9160 - /tailwindcss@3.3.1(postcss@8.4.23): 9161 - resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==} 9162 - engines: {node: '>=12.13.0'} 9163 - hasBin: true 9164 - peerDependencies: 9165 - postcss: ^8.0.9 9166 - dependencies: 9167 - arg: 5.0.2 9168 - chokidar: 3.5.3 9169 - color-name: 1.1.4 9170 - didyoumean: 1.2.2 9171 - dlv: 1.1.3 9172 - fast-glob: 3.2.12 9173 - glob-parent: 6.0.2 9174 - is-glob: 4.0.3 9175 - jiti: 1.18.2 9176 - lilconfig: 2.1.0 9177 - micromatch: 4.0.5 9178 - normalize-path: 3.0.0 9179 - object-hash: 3.0.0 9180 - picocolors: 1.0.0 9181 - postcss: 8.4.23 9182 - postcss-import: 14.1.0(postcss@8.4.23) 9183 - postcss-js: 4.0.1(postcss@8.4.23) 9184 - postcss-load-config: 3.1.4(postcss@8.4.23) 9185 - postcss-nested: 6.0.0(postcss@8.4.23) 9186 - postcss-selector-parser: 6.0.11 9187 - postcss-value-parser: 4.2.0 9188 - quick-lru: 5.1.1 9189 - resolve: 1.22.2 9190 - sucrase: 3.32.0 9191 - transitivePeerDependencies: 9192 - - ts-node 9193 - dev: false 9194 - 9195 - /tapable@1.1.3: 9196 - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} 9197 - engines: {node: '>=6'} 9198 - dev: false 9199 - 9200 - /tapable@2.2.1: 9201 - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 9202 - engines: {node: '>=6'} 9203 - dev: false 9204 - 9205 - /temp-dir@2.0.0: 9206 - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} 9207 - engines: {node: '>=8'} 9208 - dev: false 9209 - 9210 - /tempy@0.6.0: 9211 - resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} 9212 - engines: {node: '>=10'} 9213 - dependencies: 9214 - is-stream: 2.0.1 9215 - temp-dir: 2.0.0 9216 - type-fest: 0.16.0 9217 - unique-string: 2.0.0 9218 - dev: false 9219 - 9220 - /terminal-link@2.1.1: 9221 - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} 9222 - engines: {node: '>=8'} 9223 - dependencies: 9224 - ansi-escapes: 4.3.2 9225 - supports-hyperlinks: 2.3.0 9226 - dev: false 9227 - 9228 - /terser-webpack-plugin@5.3.7(webpack@5.80.0): 9229 - resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} 9230 - engines: {node: '>= 10.13.0'} 9231 - peerDependencies: 9232 - '@swc/core': '*' 9233 - esbuild: '*' 9234 - uglify-js: '*' 9235 - webpack: ^5.1.0 9236 - peerDependenciesMeta: 9237 - '@swc/core': 9238 - optional: true 9239 - esbuild: 9240 - optional: true 9241 - uglify-js: 9242 - optional: true 9243 - dependencies: 9244 - '@jridgewell/trace-mapping': 0.3.18 9245 - jest-worker: 27.5.1 9246 - schema-utils: 3.1.2 9247 - serialize-javascript: 6.0.1 9248 - terser: 5.17.1 9249 - webpack: 5.80.0 9250 - dev: false 9251 - 9252 - /terser@5.17.1: 9253 - resolution: {integrity: sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==} 9254 - engines: {node: '>=10'} 9255 - hasBin: true 9256 - dependencies: 9257 - '@jridgewell/source-map': 0.3.3 9258 - acorn: 8.8.2 9259 - commander: 2.20.3 9260 - source-map-support: 0.5.21 9261 - dev: false 9262 - 9263 - /test-exclude@6.0.0: 9264 - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} 9265 - engines: {node: '>=8'} 9266 - dependencies: 9267 - '@istanbuljs/schema': 0.1.3 9268 - glob: 7.2.3 9269 - minimatch: 3.1.2 9270 - dev: false 1501 + dev: true 9271 1502 9272 1503 /text-table@0.2.0: 9273 1504 resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 9274 - 9275 - /thenify-all@1.6.0: 9276 - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 9277 - engines: {node: '>=0.8'} 9278 - dependencies: 9279 - thenify: 3.3.1 9280 - dev: false 9281 - 9282 - /thenify@3.3.1: 9283 - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 9284 - dependencies: 9285 - any-promise: 1.3.0 9286 - dev: false 9287 - 9288 - /throat@6.0.2: 9289 - resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} 9290 - dev: false 9291 - 9292 - /thunky@1.1.0: 9293 - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} 9294 - dev: false 1505 + dev: true 9295 1506 9296 1507 /tlds@1.238.0: 9297 1508 resolution: {integrity: sha512-lFPF9pZFhLrPodaJ0wt9QIN0l8jOxqmUezGZnm7BfkDSVd9q667oVIJukLVzhF+4oW7uDlrLlfJrL5yu9RWwew==} 9298 1509 hasBin: true 9299 1510 dev: false 9300 1511 9301 - /tmpl@1.0.5: 9302 - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} 9303 - dev: false 9304 - 9305 - /to-fast-properties@2.0.0: 9306 - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 9307 - engines: {node: '>=4'} 9308 - dev: false 9309 - 9310 1512 /to-regex-range@5.0.1: 9311 1513 resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 9312 1514 engines: {node: '>=8.0'} 9313 1515 dependencies: 9314 1516 is-number: 7.0.0 9315 - 9316 - /toidentifier@1.0.1: 9317 - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 9318 - engines: {node: '>=0.6'} 9319 - dev: false 9320 - 9321 - /tough-cookie@4.1.2: 9322 - resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} 9323 - engines: {node: '>=6'} 9324 - dependencies: 9325 - psl: 1.9.0 9326 - punycode: 2.3.0 9327 - universalify: 0.2.0 9328 - url-parse: 1.5.10 9329 - dev: false 9330 - 9331 - /tr46@1.0.1: 9332 - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 9333 - dependencies: 9334 - punycode: 2.3.0 9335 - dev: false 9336 - 9337 - /tr46@2.1.0: 9338 - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} 9339 - engines: {node: '>=8'} 9340 - dependencies: 9341 - punycode: 2.3.0 9342 - dev: false 9343 - 9344 - /tryer@1.0.1: 9345 - resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} 9346 - dev: false 9347 - 9348 - /ts-interface-checker@0.1.13: 9349 - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 9350 - dev: false 9351 - 9352 - /tsconfig-paths@3.14.2: 9353 - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 9354 - dependencies: 9355 - '@types/json5': 0.0.29 9356 - json5: 1.0.2 9357 - minimist: 1.2.8 9358 - strip-bom: 3.0.0 9359 - dev: false 1517 + dev: true 9360 1518 9361 1519 /tslib@1.14.1: 9362 1520 resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 1521 + dev: true 9363 1522 9364 1523 /tslib@2.5.0: 9365 1524 resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 9366 1525 dev: false 1526 + optional: true 9367 1527 9368 - /tsutils@3.21.0(typescript@4.9.5): 1528 + /tsutils@3.21.0(typescript@5.0.4): 9369 1529 resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 9370 1530 engines: {node: '>= 6'} 9371 1531 peerDependencies: 9372 1532 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' 9373 1533 dependencies: 9374 1534 tslib: 1.14.1 9375 - typescript: 4.9.5 9376 - 9377 - /type-check@0.3.2: 9378 - resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} 9379 - engines: {node: '>= 0.8.0'} 9380 - dependencies: 9381 - prelude-ls: 1.1.2 9382 - dev: false 1535 + typescript: 5.0.4 1536 + dev: true 9383 1537 9384 1538 /type-check@0.4.0: 9385 1539 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 9386 1540 engines: {node: '>= 0.8.0'} 9387 1541 dependencies: 9388 1542 prelude-ls: 1.2.1 9389 - 9390 - /type-detect@4.0.8: 9391 - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} 9392 - engines: {node: '>=4'} 9393 - dev: false 9394 - 9395 - /type-fest@0.16.0: 9396 - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} 9397 - engines: {node: '>=10'} 9398 - dev: false 1543 + dev: true 9399 1544 9400 1545 /type-fest@0.20.2: 9401 1546 resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 9402 1547 engines: {node: '>=10'} 9403 - 9404 - /type-fest@0.21.3: 9405 - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 9406 - engines: {node: '>=10'} 9407 - dev: false 9408 - 9409 - /type-is@1.6.18: 9410 - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 9411 - engines: {node: '>= 0.6'} 9412 - dependencies: 9413 - media-typer: 0.3.0 9414 - mime-types: 2.1.35 9415 - dev: false 9416 - 9417 - /typed-array-length@1.0.4: 9418 - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 9419 - dependencies: 9420 - call-bind: 1.0.2 9421 - for-each: 0.3.3 9422 - is-typed-array: 1.1.10 9423 - dev: false 1548 + dev: true 9424 1549 9425 1550 /typed-emitter@2.1.0: 9426 1551 resolution: {integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==} ··· 9428 1553 rxjs: 7.8.0 9429 1554 dev: false 9430 1555 9431 - /typedarray-to-buffer@3.1.5: 9432 - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 9433 - dependencies: 9434 - is-typedarray: 1.0.0 9435 - dev: false 9436 - 9437 - /typescript@4.9.5: 9438 - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} 9439 - engines: {node: '>=4.2.0'} 1556 + /typescript@5.0.4: 1557 + resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} 1558 + engines: {node: '>=12.20'} 9440 1559 hasBin: true 1560 + dev: true 9441 1561 9442 1562 /uint8arrays@3.0.0: 9443 1563 resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} ··· 9445 1565 multiformats: 9.9.0 9446 1566 dev: false 9447 1567 9448 - /unbox-primitive@1.0.2: 9449 - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 9450 - dependencies: 9451 - call-bind: 1.0.2 9452 - has-bigints: 1.0.2 9453 - has-symbols: 1.0.3 9454 - which-boxed-primitive: 1.0.2 9455 - dev: false 9456 - 9457 - /unicode-canonical-property-names-ecmascript@2.0.0: 9458 - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} 9459 - engines: {node: '>=4'} 9460 - dev: false 9461 - 9462 - /unicode-match-property-ecmascript@2.0.0: 9463 - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 9464 - engines: {node: '>=4'} 9465 - dependencies: 9466 - unicode-canonical-property-names-ecmascript: 2.0.0 9467 - unicode-property-aliases-ecmascript: 2.1.0 9468 - dev: false 9469 - 9470 - /unicode-match-property-value-ecmascript@2.1.0: 9471 - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} 9472 - engines: {node: '>=4'} 9473 - dev: false 9474 - 9475 - /unicode-property-aliases-ecmascript@2.1.0: 9476 - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} 9477 - engines: {node: '>=4'} 9478 - dev: false 9479 - 9480 - /unique-string@2.0.0: 9481 - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} 9482 - engines: {node: '>=8'} 9483 - dependencies: 9484 - crypto-random-string: 2.0.0 9485 - dev: false 9486 - 9487 - /universalify@0.2.0: 9488 - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} 9489 - engines: {node: '>= 4.0.0'} 9490 - dev: false 9491 - 9492 - /universalify@2.0.0: 9493 - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 9494 - engines: {node: '>= 10.0.0'} 9495 - dev: false 9496 - 9497 - /unpipe@1.0.0: 9498 - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 9499 - engines: {node: '>= 0.8'} 9500 - dev: false 9501 - 9502 - /unquote@1.1.1: 9503 - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} 9504 - dev: false 9505 - 9506 - /upath@1.2.0: 9507 - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} 9508 - engines: {node: '>=4'} 9509 - dev: false 9510 - 9511 - /update-browserslist-db@1.0.11(browserslist@4.21.5): 9512 - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} 9513 - hasBin: true 9514 - peerDependencies: 9515 - browserslist: '>= 4.21.0' 9516 - dependencies: 9517 - browserslist: 4.21.5 9518 - escalade: 3.1.1 9519 - picocolors: 1.0.0 9520 - dev: false 9521 - 9522 1568 /uri-js@4.4.1: 9523 1569 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 9524 1570 dependencies: 9525 1571 punycode: 2.3.0 9526 - 9527 - /url-parse@1.5.10: 9528 - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} 9529 - dependencies: 9530 - querystringify: 2.2.0 9531 - requires-port: 1.0.0 9532 - dev: false 9533 - 9534 - /util-deprecate@1.0.2: 9535 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 9536 - dev: false 1572 + dev: true 9537 1573 9538 - /util.promisify@1.0.1: 9539 - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} 9540 - dependencies: 9541 - define-properties: 1.2.0 9542 - es-abstract: 1.21.2 9543 - has-symbols: 1.0.3 9544 - object.getownpropertydescriptors: 2.1.6 9545 - dev: false 9546 - 9547 - /utila@0.4.0: 9548 - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} 9549 - dev: false 9550 - 9551 - /utils-merge@1.0.1: 9552 - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 9553 - engines: {node: '>= 0.4.0'} 9554 - dev: false 9555 - 9556 - /uuid@8.3.2: 9557 - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} 1574 + /vite@4.3.1: 1575 + resolution: {integrity: sha512-EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg==} 1576 + engines: {node: ^14.18.0 || >=16.0.0} 9558 1577 hasBin: true 9559 - dev: false 9560 - 9561 - /v8-to-istanbul@8.1.1: 9562 - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} 9563 - engines: {node: '>=10.12.0'} 9564 - dependencies: 9565 - '@types/istanbul-lib-coverage': 2.0.4 9566 - convert-source-map: 1.9.0 9567 - source-map: 0.7.4 9568 - dev: false 9569 - 9570 - /vary@1.1.2: 9571 - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 9572 - engines: {node: '>= 0.8'} 9573 - dev: false 9574 - 9575 - /w3c-hr-time@1.0.2: 9576 - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} 9577 - deprecated: Use your platform's native performance.now() and performance.timeOrigin. 9578 - dependencies: 9579 - browser-process-hrtime: 1.0.0 9580 - dev: false 9581 - 9582 - /w3c-xmlserializer@2.0.0: 9583 - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} 9584 - engines: {node: '>=10'} 9585 - dependencies: 9586 - xml-name-validator: 3.0.0 9587 - dev: false 9588 - 9589 - /walker@1.0.8: 9590 - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} 9591 - dependencies: 9592 - makeerror: 1.0.12 9593 - dev: false 9594 - 9595 - /watchpack@2.4.0: 9596 - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 9597 - engines: {node: '>=10.13.0'} 9598 - dependencies: 9599 - glob-to-regexp: 0.4.1 9600 - graceful-fs: 4.2.11 9601 - dev: false 9602 - 9603 - /wbuf@1.7.3: 9604 - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} 9605 - dependencies: 9606 - minimalistic-assert: 1.0.1 9607 - dev: false 9608 - 9609 - /webidl-conversions@4.0.2: 9610 - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 9611 - dev: false 9612 - 9613 - /webidl-conversions@5.0.0: 9614 - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} 9615 - engines: {node: '>=8'} 9616 - dev: false 9617 - 9618 - /webidl-conversions@6.1.0: 9619 - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} 9620 - engines: {node: '>=10.4'} 9621 - dev: false 9622 - 9623 - /webpack-dev-middleware@5.3.3(webpack@5.80.0): 9624 - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} 9625 - engines: {node: '>= 12.13.0'} 9626 1578 peerDependencies: 9627 - webpack: ^4.0.0 || ^5.0.0 9628 - dependencies: 9629 - colorette: 2.0.20 9630 - memfs: 3.5.1 9631 - mime-types: 2.1.35 9632 - range-parser: 1.2.1 9633 - schema-utils: 4.0.1 9634 - webpack: 5.80.0 9635 - dev: false 9636 - 9637 - /webpack-dev-server@4.13.3(webpack@5.80.0): 9638 - resolution: {integrity: sha512-KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug==} 9639 - engines: {node: '>= 12.13.0'} 9640 - hasBin: true 9641 - peerDependencies: 9642 - webpack: ^4.37.0 || ^5.0.0 9643 - webpack-cli: '*' 1579 + '@types/node': '>= 14' 1580 + less: '*' 1581 + sass: '*' 1582 + stylus: '*' 1583 + sugarss: '*' 1584 + terser: ^5.4.0 9644 1585 peerDependenciesMeta: 9645 - webpack: 1586 + '@types/node': 9646 1587 optional: true 9647 - webpack-cli: 1588 + less: 9648 1589 optional: true 9649 - dependencies: 9650 - '@types/bonjour': 3.5.10 9651 - '@types/connect-history-api-fallback': 1.3.5 9652 - '@types/express': 4.17.17 9653 - '@types/serve-index': 1.9.1 9654 - '@types/serve-static': 1.15.1 9655 - '@types/sockjs': 0.3.33 9656 - '@types/ws': 8.5.4 9657 - ansi-html-community: 0.0.8 9658 - bonjour-service: 1.1.1 9659 - chokidar: 3.5.3 9660 - colorette: 2.0.20 9661 - compression: 1.7.4 9662 - connect-history-api-fallback: 2.0.0 9663 - default-gateway: 6.0.3 9664 - express: 4.18.2 9665 - graceful-fs: 4.2.11 9666 - html-entities: 2.3.3 9667 - http-proxy-middleware: 2.0.6(@types/express@4.17.17) 9668 - ipaddr.js: 2.0.1 9669 - launch-editor: 2.6.0 9670 - open: 8.4.2 9671 - p-retry: 4.6.2 9672 - rimraf: 3.0.2 9673 - schema-utils: 4.0.1 9674 - selfsigned: 2.1.1 9675 - serve-index: 1.9.1 9676 - sockjs: 0.3.24 9677 - spdy: 4.0.2 9678 - webpack: 5.80.0 9679 - webpack-dev-middleware: 5.3.3(webpack@5.80.0) 9680 - ws: 8.13.0 9681 - transitivePeerDependencies: 9682 - - bufferutil 9683 - - debug 9684 - - supports-color 9685 - - utf-8-validate 9686 - dev: false 9687 - 9688 - /webpack-manifest-plugin@4.1.1(webpack@5.80.0): 9689 - resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==} 9690 - engines: {node: '>=12.22.0'} 9691 - peerDependencies: 9692 - webpack: ^4.44.2 || ^5.47.0 9693 - dependencies: 9694 - tapable: 2.2.1 9695 - webpack: 5.80.0 9696 - webpack-sources: 2.3.1 9697 - dev: false 9698 - 9699 - /webpack-sources@1.4.3: 9700 - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} 9701 - dependencies: 9702 - source-list-map: 2.0.1 9703 - source-map: 0.6.1 9704 - dev: false 9705 - 9706 - /webpack-sources@2.3.1: 9707 - resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==} 9708 - engines: {node: '>=10.13.0'} 9709 - dependencies: 9710 - source-list-map: 2.0.1 9711 - source-map: 0.6.1 9712 - dev: false 9713 - 9714 - /webpack-sources@3.2.3: 9715 - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} 9716 - engines: {node: '>=10.13.0'} 9717 - dev: false 9718 - 9719 - /webpack@5.80.0: 9720 - resolution: {integrity: sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==} 9721 - engines: {node: '>=10.13.0'} 9722 - hasBin: true 9723 - peerDependencies: 9724 - webpack-cli: '*' 9725 - peerDependenciesMeta: 9726 - webpack-cli: 1590 + sass: 9727 1591 optional: true 9728 - dependencies: 9729 - '@types/eslint-scope': 3.7.4 9730 - '@types/estree': 1.0.1 9731 - '@webassemblyjs/ast': 1.11.5 9732 - '@webassemblyjs/wasm-edit': 1.11.5 9733 - '@webassemblyjs/wasm-parser': 1.11.5 9734 - acorn: 8.8.2 9735 - acorn-import-assertions: 1.8.0(acorn@8.8.2) 9736 - browserslist: 4.21.5 9737 - chrome-trace-event: 1.0.3 9738 - enhanced-resolve: 5.13.0 9739 - es-module-lexer: 1.2.1 9740 - eslint-scope: 5.1.1 9741 - events: 3.3.0 9742 - glob-to-regexp: 0.4.1 9743 - graceful-fs: 4.2.11 9744 - json-parse-even-better-errors: 2.3.1 9745 - loader-runner: 4.3.0 9746 - mime-types: 2.1.35 9747 - neo-async: 2.6.2 9748 - schema-utils: 3.1.2 9749 - tapable: 2.2.1 9750 - terser-webpack-plugin: 5.3.7(webpack@5.80.0) 9751 - watchpack: 2.4.0 9752 - webpack-sources: 3.2.3 9753 - transitivePeerDependencies: 9754 - - '@swc/core' 9755 - - esbuild 9756 - - uglify-js 9757 - dev: false 9758 - 9759 - /websocket-driver@0.7.4: 9760 - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} 9761 - engines: {node: '>=0.8.0'} 9762 - dependencies: 9763 - http-parser-js: 0.5.8 9764 - safe-buffer: 5.2.1 9765 - websocket-extensions: 0.1.4 9766 - dev: false 9767 - 9768 - /websocket-extensions@0.1.4: 9769 - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} 9770 - engines: {node: '>=0.8.0'} 9771 - dev: false 9772 - 9773 - /whatwg-encoding@1.0.5: 9774 - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} 9775 - dependencies: 9776 - iconv-lite: 0.4.24 9777 - dev: false 9778 - 9779 - /whatwg-fetch@3.6.2: 9780 - resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} 9781 - dev: false 9782 - 9783 - /whatwg-mimetype@2.3.0: 9784 - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} 9785 - dev: false 9786 - 9787 - /whatwg-url@7.1.0: 9788 - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 9789 - dependencies: 9790 - lodash.sortby: 4.7.0 9791 - tr46: 1.0.1 9792 - webidl-conversions: 4.0.2 9793 - dev: false 9794 - 9795 - /whatwg-url@8.7.0: 9796 - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} 9797 - engines: {node: '>=10'} 9798 - dependencies: 9799 - lodash: 4.17.21 9800 - tr46: 2.1.0 9801 - webidl-conversions: 6.1.0 9802 - dev: false 9803 - 9804 - /which-boxed-primitive@1.0.2: 9805 - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 9806 - dependencies: 9807 - is-bigint: 1.0.4 9808 - is-boolean-object: 1.1.2 9809 - is-number-object: 1.0.7 9810 - is-string: 1.0.7 9811 - is-symbol: 1.0.4 9812 - dev: false 9813 - 9814 - /which-collection@1.0.1: 9815 - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 9816 - dependencies: 9817 - is-map: 2.0.2 9818 - is-set: 2.0.2 9819 - is-weakmap: 2.0.1 9820 - is-weakset: 2.0.2 9821 - dev: false 9822 - 9823 - /which-typed-array@1.1.9: 9824 - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 9825 - engines: {node: '>= 0.4'} 1592 + stylus: 1593 + optional: true 1594 + sugarss: 1595 + optional: true 1596 + terser: 1597 + optional: true 9826 1598 dependencies: 9827 - available-typed-arrays: 1.0.5 9828 - call-bind: 1.0.2 9829 - for-each: 0.3.3 9830 - gopd: 1.0.1 9831 - has-tostringtag: 1.0.0 9832 - is-typed-array: 1.1.10 9833 - dev: false 9834 - 9835 - /which@1.3.1: 9836 - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} 9837 - hasBin: true 9838 - dependencies: 9839 - isexe: 2.0.0 9840 - dev: false 1599 + esbuild: 0.17.17 1600 + postcss: 8.4.23 1601 + rollup: 3.20.7 1602 + optionalDependencies: 1603 + fsevents: 2.3.2 1604 + dev: true 9841 1605 9842 1606 /which@2.0.2: 9843 1607 resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} ··· 9845 1609 hasBin: true 9846 1610 dependencies: 9847 1611 isexe: 2.0.0 1612 + dev: true 9848 1613 9849 1614 /word-wrap@1.2.3: 9850 1615 resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 9851 1616 engines: {node: '>=0.10.0'} 9852 - 9853 - /workbox-background-sync@6.5.4: 9854 - resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==} 9855 - dependencies: 9856 - idb: 7.1.1 9857 - workbox-core: 6.5.4 9858 - dev: false 9859 - 9860 - /workbox-broadcast-update@6.5.4: 9861 - resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==} 9862 - dependencies: 9863 - workbox-core: 6.5.4 9864 - dev: false 9865 - 9866 - /workbox-build@6.5.4: 9867 - resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==} 9868 - engines: {node: '>=10.0.0'} 9869 - dependencies: 9870 - '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) 9871 - '@babel/core': 7.21.4 9872 - '@babel/preset-env': 7.21.4(@babel/core@7.21.4) 9873 - '@babel/runtime': 7.21.0 9874 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.21.4)(rollup@2.79.1) 9875 - '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) 9876 - '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) 9877 - '@surma/rollup-plugin-off-main-thread': 2.2.3 9878 - ajv: 8.12.0 9879 - common-tags: 1.8.2 9880 - fast-json-stable-stringify: 2.1.0 9881 - fs-extra: 9.1.0 9882 - glob: 7.2.3 9883 - lodash: 4.17.21 9884 - pretty-bytes: 5.6.0 9885 - rollup: 2.79.1 9886 - rollup-plugin-terser: 7.0.2(rollup@2.79.1) 9887 - source-map: 0.8.0-beta.0 9888 - stringify-object: 3.3.0 9889 - strip-comments: 2.0.1 9890 - tempy: 0.6.0 9891 - upath: 1.2.0 9892 - workbox-background-sync: 6.5.4 9893 - workbox-broadcast-update: 6.5.4 9894 - workbox-cacheable-response: 6.5.4 9895 - workbox-core: 6.5.4 9896 - workbox-expiration: 6.5.4 9897 - workbox-google-analytics: 6.5.4 9898 - workbox-navigation-preload: 6.5.4 9899 - workbox-precaching: 6.5.4 9900 - workbox-range-requests: 6.5.4 9901 - workbox-recipes: 6.5.4 9902 - workbox-routing: 6.5.4 9903 - workbox-strategies: 6.5.4 9904 - workbox-streams: 6.5.4 9905 - workbox-sw: 6.5.4 9906 - workbox-window: 6.5.4 9907 - transitivePeerDependencies: 9908 - - '@types/babel__core' 9909 - - supports-color 9910 - dev: false 9911 - 9912 - /workbox-cacheable-response@6.5.4: 9913 - resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==} 9914 - dependencies: 9915 - workbox-core: 6.5.4 9916 - dev: false 9917 - 9918 - /workbox-core@6.5.4: 9919 - resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==} 9920 - dev: false 9921 - 9922 - /workbox-expiration@6.5.4: 9923 - resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==} 9924 - dependencies: 9925 - idb: 7.1.1 9926 - workbox-core: 6.5.4 9927 - dev: false 9928 - 9929 - /workbox-google-analytics@6.5.4: 9930 - resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==} 9931 - dependencies: 9932 - workbox-background-sync: 6.5.4 9933 - workbox-core: 6.5.4 9934 - workbox-routing: 6.5.4 9935 - workbox-strategies: 6.5.4 9936 - dev: false 9937 - 9938 - /workbox-navigation-preload@6.5.4: 9939 - resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==} 9940 - dependencies: 9941 - workbox-core: 6.5.4 9942 - dev: false 9943 - 9944 - /workbox-precaching@6.5.4: 9945 - resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==} 9946 - dependencies: 9947 - workbox-core: 6.5.4 9948 - workbox-routing: 6.5.4 9949 - workbox-strategies: 6.5.4 9950 - dev: false 9951 - 9952 - /workbox-range-requests@6.5.4: 9953 - resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==} 9954 - dependencies: 9955 - workbox-core: 6.5.4 9956 - dev: false 9957 - 9958 - /workbox-recipes@6.5.4: 9959 - resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==} 9960 - dependencies: 9961 - workbox-cacheable-response: 6.5.4 9962 - workbox-core: 6.5.4 9963 - workbox-expiration: 6.5.4 9964 - workbox-precaching: 6.5.4 9965 - workbox-routing: 6.5.4 9966 - workbox-strategies: 6.5.4 9967 - dev: false 9968 - 9969 - /workbox-routing@6.5.4: 9970 - resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==} 9971 - dependencies: 9972 - workbox-core: 6.5.4 9973 - dev: false 9974 - 9975 - /workbox-strategies@6.5.4: 9976 - resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==} 9977 - dependencies: 9978 - workbox-core: 6.5.4 9979 - dev: false 9980 - 9981 - /workbox-streams@6.5.4: 9982 - resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==} 9983 - dependencies: 9984 - workbox-core: 6.5.4 9985 - workbox-routing: 6.5.4 9986 - dev: false 9987 - 9988 - /workbox-sw@6.5.4: 9989 - resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==} 9990 - dev: false 9991 - 9992 - /workbox-webpack-plugin@6.5.4(webpack@5.80.0): 9993 - resolution: {integrity: sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==} 9994 - engines: {node: '>=10.0.0'} 9995 - peerDependencies: 9996 - webpack: ^4.4.0 || ^5.9.0 9997 - dependencies: 9998 - fast-json-stable-stringify: 2.1.0 9999 - pretty-bytes: 5.6.0 10000 - upath: 1.2.0 10001 - webpack: 5.80.0 10002 - webpack-sources: 1.4.3 10003 - workbox-build: 6.5.4 10004 - transitivePeerDependencies: 10005 - - '@types/babel__core' 10006 - - supports-color 10007 - dev: false 10008 - 10009 - /workbox-window@6.5.4: 10010 - resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==} 10011 - dependencies: 10012 - '@types/trusted-types': 2.0.3 10013 - workbox-core: 6.5.4 10014 - dev: false 10015 - 10016 - /wrap-ansi@7.0.0: 10017 - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 10018 - engines: {node: '>=10'} 10019 - dependencies: 10020 - ansi-styles: 4.3.0 10021 - string-width: 4.2.3 10022 - strip-ansi: 6.0.1 10023 - dev: false 1617 + dev: true 10024 1618 10025 1619 /wrappy@1.0.2: 10026 1620 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 10027 - 10028 - /write-file-atomic@3.0.3: 10029 - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 10030 - dependencies: 10031 - imurmurhash: 0.1.4 10032 - is-typedarray: 1.0.0 10033 - signal-exit: 3.0.7 10034 - typedarray-to-buffer: 3.1.5 10035 - dev: false 10036 - 10037 - /ws@7.5.9: 10038 - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} 10039 - engines: {node: '>=8.3.0'} 10040 - peerDependencies: 10041 - bufferutil: ^4.0.1 10042 - utf-8-validate: ^5.0.2 10043 - peerDependenciesMeta: 10044 - bufferutil: 10045 - optional: true 10046 - utf-8-validate: 10047 - optional: true 10048 - dev: false 10049 - 10050 - /ws@8.13.0: 10051 - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} 10052 - engines: {node: '>=10.0.0'} 10053 - peerDependencies: 10054 - bufferutil: ^4.0.1 10055 - utf-8-validate: '>=5.0.2' 10056 - peerDependenciesMeta: 10057 - bufferutil: 10058 - optional: true 10059 - utf-8-validate: 10060 - optional: true 10061 - dev: false 10062 - 10063 - /xml-name-validator@3.0.0: 10064 - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} 10065 - dev: false 10066 - 10067 - /xmlchars@2.2.0: 10068 - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 10069 - dev: false 10070 - 10071 - /y18n@5.0.8: 10072 - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 10073 - engines: {node: '>=10'} 10074 - dev: false 10075 - 10076 - /yallist@3.1.1: 10077 - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 10078 - dev: false 1621 + dev: true 10079 1622 10080 1623 /yallist@4.0.0: 10081 1624 resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 10082 - 10083 - /yaml@1.10.2: 10084 - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 10085 - engines: {node: '>= 6'} 10086 - dev: false 10087 - 10088 - /yargs-parser@20.2.9: 10089 - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 10090 - engines: {node: '>=10'} 10091 - dev: false 10092 - 10093 - /yargs@16.2.0: 10094 - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 10095 - engines: {node: '>=10'} 10096 - dependencies: 10097 - cliui: 7.0.4 10098 - escalade: 3.1.1 10099 - get-caller-file: 2.0.5 10100 - require-directory: 2.1.1 10101 - string-width: 4.2.3 10102 - y18n: 5.0.8 10103 - yargs-parser: 20.2.9 10104 - dev: false 1625 + dev: true 10105 1626 10106 1627 /yocto-queue@0.1.0: 10107 1628 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 10108 1629 engines: {node: '>=10'} 1630 + dev: true 10109 1631 10110 1632 /zod@3.21.4: 10111 1633 resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
-39
public/index.html
··· 1 - <!DOCTYPE html> 2 - <html lang="en"> 3 - <head> 4 - <meta charset="utf-8" /> 5 - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> 6 - <meta name="theme-color" content="#000000" /> 7 - <!-- 8 - manifest.json provides metadata used when your web app is added to the 9 - homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ 10 - --> 11 - <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> 12 - <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" /> 13 - <!-- 14 - Notice the use of %PUBLIC_URL% in the tags above. 15 - It will be replaced with the URL of the `public` folder during the build. 16 - Only files inside the `public` folder can be referenced from the HTML. 17 - 18 - Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will 19 - work correctly both with client-side routing and a non-root public URL. 20 - Learn how to configure a non-root public URL by running `npm run build`. 21 - --> 22 - <title>Bluesky Calendar Heatmap</title> 23 - </head> 24 - 25 - <body> 26 - <noscript> You need to enable JavaScript to run this app. </noscript> 27 - <div id="root"></div> 28 - <!-- 29 - This HTML file is a template. 30 - If you open it directly in the browser, you will see an empty page. 31 - 32 - You can add webfonts, meta tags, or analytics to this file. 33 - The build step will place the bundled scripts into the <body> tag. 34 - 35 - To begin the development, run `npm start` or `yarn start`. 36 - To create a production bundle, use `npm run build` or `yarn build`. 37 - --> 38 - </body> 39 - </html>
+1
public/vite.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
src/index.tsx src/main.tsx
+1
src/vite-env.d.ts
··· 1 + /// <reference types="vite/client" />
+19 -105
tsconfig.json
··· 1 1 { 2 2 "compilerOptions": { 3 - "jsx": "react", 4 - /* Visit https://aka.ms/tsconfig to read more about this file */ 5 - 6 - /* Projects */ 7 - // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ 8 - // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 9 - // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ 10 - // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ 11 - // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 12 - // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 13 - 14 - /* Language and Environment */ 15 - "target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, 16 - // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 17 - // "jsx": "preserve", /* Specify what JSX code is generated. */ 18 - // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ 19 - // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 20 - // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ 21 - // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 22 - // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ 23 - // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ 24 - // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 25 - // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 26 - // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ 27 - 28 - /* Modules */ 29 - "module": "esnext" /* Specify what module code is generated. */, 30 - // "rootDir": "./", /* Specify the root folder within your source files. */ 31 - "moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */, 32 - // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 33 - // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 34 - // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 35 - // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ 36 - // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 37 - // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 38 - // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ 39 - // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */ 40 - // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */ 41 - // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */ 42 - // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */ 43 - // "resolveJsonModule": true, /* Enable importing .json files. */ 44 - // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ 45 - // "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */ 46 - 47 - /* JavaScript Support */ 48 - // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ 49 - // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 50 - // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ 51 - 52 - /* Emit */ 53 - // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 54 - // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 55 - // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 56 - // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 57 - // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 58 - // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ 59 - // "outDir": "./", /* Specify an output folder for all emitted files. */ 60 - // "removeComments": true, /* Disable emitting comments. */ 61 - // "noEmit": true, /* Disable emitting files from a compilation. */ 62 - // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 63 - // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */ 64 - // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 65 - // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 66 - // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 67 - // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 68 - // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 69 - // "newLine": "crlf", /* Set the newline character for emitting files. */ 70 - // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ 71 - // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ 72 - // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 73 - // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ 74 - // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 75 - // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 3 + "target": "ESNext", 4 + "lib": ["DOM", "DOM.Iterable", "ESNext"], 5 + "module": "ESNext", 6 + "skipLibCheck": true, 76 7 77 - /* Interop Constraints */ 78 - // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 79 - // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ 80 - "allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */, 81 - "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, 82 - // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 83 - "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, 84 - 85 - /* Type Checking */ 86 - "strict": true /* Enable all strict type-checking options. */, 87 - "noImplicitAny": false /* Enable error reporting for expressions and declarations with an implied 'any' type. */, 88 - // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ 89 - // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 90 - // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ 91 - // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 92 - // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ 93 - // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ 94 - // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 95 - // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ 96 - // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ 97 - // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 98 - // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 99 - // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 100 - // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ 101 - // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 102 - // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ 103 - // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 104 - // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 8 + /* Bundler mode */ 9 + "moduleResolution": "bundler", 10 + "allowImportingTsExtensions": true, 11 + "resolveJsonModule": true, 12 + "isolatedModules": true, 13 + "noEmit": true, 14 + "jsx": "react-jsx", 105 15 106 - /* Completeness */ 107 - // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 108 - "skipLibCheck": true /* Skip type checking all .d.ts files. */ 109 - } 16 + /* Linting */ 17 + "strict": true, 18 + "noUnusedLocals": true, 19 + "noUnusedParameters": true, 20 + "noFallthroughCasesInSwitch": true 21 + }, 22 + "include": ["src"], 23 + "references": [{ "path": "./tsconfig.node.json" }] 110 24 }
+10
tsconfig.node.json
··· 1 + { 2 + "compilerOptions": { 3 + "composite": true, 4 + "skipLibCheck": true, 5 + "module": "ESNext", 6 + "moduleResolution": "bundler", 7 + "allowSyntheticDefaultImports": true 8 + }, 9 + "include": ["vite.config.ts"] 10 + }
+7
vite.config.ts
··· 1 + import { defineConfig } from 'vite' 2 + import react from '@vitejs/plugin-react-swc' 3 + 4 + // https://vitejs.dev/config/ 5 + export default defineConfig({ 6 + plugins: [react()], 7 + })