├── vite.config.js
├── src
└── index.js
├── .prettierrc
├── docs
├── main.js
├── index.css
└── index.html
├── .gitignore
├── .eslintrc.js
├── .github
└── workflows
│ └── publish.yml
├── package.json
├── README.md
└── pnpm-lock.yaml
/vite.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | root: './docs'
3 | }
4 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | export function hello(name) {
2 | return `Hello ${name}!`
3 | }
4 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 120,
3 | "endOfLine": "auto",
4 | "semi": false,
5 | "singleQuote": true
6 | }
7 |
--------------------------------------------------------------------------------
/docs/main.js:
--------------------------------------------------------------------------------
1 | import { hello } from '../src/index'
2 | import './index.css'
3 |
4 | const el = document.createElement('p')
5 | el.textContent = hello('world')
6 |
7 | document.body.appendChild(el)
8 |
--------------------------------------------------------------------------------
/docs/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
4 | 'Droid Sans', 'Helvetica Neue', sans-serif;
5 | -webkit-font-smoothing: antialiased;
6 | -moz-osx-font-smoothing: grayscale;
7 | }
8 |
9 | .main {
10 | padding: 5vw;
11 | }
12 |
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Studio Freight - Hamo
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | bundled
13 | dist-ssr
14 | *.local
15 |
16 | # Editor directories and files
17 | .vscode/*
18 | !.vscode/extensions.json
19 | .idea
20 | .DS_Store
21 | *.suo
22 | *.ntvs*
23 | *.njsproj
24 | *.sln
25 | *.sw?
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | env: {
3 | browser: true,
4 | es2021: true,
5 | node: true,
6 | },
7 | extends: ['standard', 'plugin:react-hooks/recommended', 'prettier'],
8 | parserOptions: {
9 | ecmaVersion: 'latest',
10 | },
11 | rules: {
12 | 'space-before-function-paren': 'off',
13 | 'comma-dangle': ['error', 'always-multiline'],
14 | },
15 | ignorePatterns: ['dist', 'node_modules', 'bundled'],
16 | }
17 |
--------------------------------------------------------------------------------
/.github/workflows/publish.yml:
--------------------------------------------------------------------------------
1 | name: Publish to NPM
2 | on:
3 | release:
4 | types: [created]
5 | jobs:
6 | build:
7 | runs-on: ubuntu-latest
8 | steps:
9 | - name: Checkout
10 | uses: actions/checkout@v3
11 |
12 | - name: Setup Node
13 | uses: actions/setup-node@v3
14 | with:
15 | node-version: 16
16 | registry-url: 'https://registry.npmjs.org'
17 |
18 | - name: Install pnpm
19 | uses: pnpm/action-setup@v2
20 | with:
21 | version: 7
22 | run_install: false
23 |
24 | - name: Install dependencies and build
25 | run: pnpm i --frozen-lockfile
26 | - name: Publish package on NPM
27 | run: npm publish
28 | env:
29 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
30 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "bibliotheca",
3 | "version": "1.0.0",
4 | "description": "",
5 | "files": [
6 | "dist/**/*",
7 | "bundled/**/*"
8 | ],
9 | "sideEffects": false,
10 | "source": "src/index.js",
11 | "main": "dist/index.js",
12 | "umd:main": "dist/index.umd.js",
13 | "module": "dist/index.mjs",
14 | "types": "dist/types/index.d.ts",
15 | "exports": {
16 | "require": "./dist/index.js",
17 | "default": "./dist/index.modern.mjs"
18 | },
19 | "scripts": {
20 | "dev": "vite",
21 | "clean": "npm-run-all --parallel clean:bundled clean:dist",
22 | "clean:bundled": "rm -rf bundled",
23 | "clean:dist": "rm -rf dist",
24 | "prepublishOnly": "npm version patch",
25 | "postpublish": "git push --follow-tags",
26 | "preversion": "npm run build",
27 | "build": "npm-run-all --parallel clean build:dist build:bundle build:types",
28 | "build:types": "tsc --allowJs -d --emitDeclarationOnly --declarationDir ./dist/types --removeComments ./src/index.js",
29 | "build:dist": "microbundle build -i src/ --o ./dist",
30 | "build:bundle": "npm-run-all build:bundle-full build:bundle-min",
31 | "build:bundle-full": "microbundle build -i src/ --o ./bundled/index.js --no-sourcemap --no-pkg-main --external none --name $npm_package_name --format umd --no-compress",
32 | "build:bundle-min": "microbundle build -i src/ --o ./bundled/index.min.js --no-sourcemap --no-pkg-main --external none --name $npm_package_name --format umd"
33 | },
34 | "repository": {
35 | "type": "git",
36 | "url": "git+https://github.com/studio-freight/bibliotheca.git"
37 | },
38 | "keywords": [],
39 | "author": "@studio-freight",
40 | "license": "ISC",
41 | "bugs": {
42 | "url": "https://github.com/studio-freight/bibliotheca/issues"
43 | },
44 | "homepage": "https://github.com/studio-freight/bibliotheca#readme",
45 | "devDependencies": {
46 | "@size-limit/preset-small-lib": "^8.1.2",
47 | "eslint": "^8.33.0",
48 | "eslint-config-prettier": "^8.6.0",
49 | "eslint-config-standard": "^17.0.0",
50 | "eslint-plugin-import": "^2.27.5",
51 | "eslint-plugin-n": "^15.6.1",
52 | "eslint-plugin-promise": "^6.1.1",
53 | "eslint-plugin-react": "^7.32.2",
54 | "eslint-plugin-react-hooks": "^4.6.0",
55 | "microbundle": "^0.15.1",
56 | "npm-run-all": "^4.1.5",
57 | "prettier": "^2.8.3",
58 | "typescript": "^4.9.4",
59 | "vite": "^4.0.4"
60 | },
61 | "size-limit": [
62 | {
63 | "limit": "3 kB",
64 | "path": "dist/index.js"
65 | },
66 | {
67 | "limit": "2 kB",
68 | "path": "dist/index.mjs"
69 | }
70 | ]
71 | }
72 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://github.com/studio-freight/bibliotheca)
2 |
3 |
18 |
19 | ## Introduction
20 |
21 | Bibliotheca is our starting point to create libraries.
22 |
23 |
24 |
25 | ## Composition
26 |
27 | This template kit is composed of:
28 |
29 | - [Size Limit](https://github.com/ai/size-limit/)
30 | - [Github Actions](https://github.com/features/actions)
31 | - [Microbundle](https://github.com/developit/microbundle)
32 | - [Typescript](https://github.com/microsoft/TypeScript) (tsc)
33 | - [ESLint](https://github.com/eslint/eslint)
34 | - [Prettier](https://github.com/prettier/prettier)
35 | - [Vite](https://github.com/vitejs/vite) for dev purposes
36 |
37 |
38 |
39 | ## Folder Structure
40 |
41 | - **/bundled:** Generated by `microbundle` after running `build:bundled` script. Includes all external dependencies.
42 | - **/dist:** Generated by `microbundle` after running `build:dist` script.
43 | - **/dist/types** Generated by `tsc` after running `build:types` script.
44 | - **/docs:** Used by `vite` through `dev` script to serve the documentation.
45 | - **/docs/App.jsx:** here's where you can test your library.
46 | - **/src:** Your library's raw code.
47 |
48 |
49 |
50 | ## Bibliotheca in use
51 |
52 | - [@studio-freight/lenis](https://github.com/studio-freight/lenis) Tiny, Performant, Vanilla JS, Smooth Scroll library.
53 | - [@studio-freight/tempus](https://github.com/studio-freight/tempus) One rAF to rule them all.
54 | - [@studio-freight/hamo](https://github.com/studio-freight/hamo) Collection of React hooks.
55 |
56 |
57 |
58 | ## Authors
59 |
60 | This toolkit is curated and maintained by the Studio Freight Darkroom team:
61 |
62 | - Clement Roche ([@clementroche\_](https://twitter.com/clementroche_)) – [Studio Freight](https://studiofreight.com)
63 | - Guido Fier ([@uido15](https://twitter.com/uido15)) – [Studio Freight](https://studiofreight.com)
64 | - Leandro Soengas ([@lsoengas](https://twitter.com/lsoengas)) - [Studio Freight](https://studiofreight.com)
65 | - Franco Arza ([@arzafran](https://twitter.com/arzafran)) - [Studio Freight](https://studiofreight.com)
66 |
67 |
68 |
69 | ## License
70 |
71 | [The MIT License.](https://opensource.org/licenses/MIT)
72 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: 5.4
2 |
3 | specifiers:
4 | '@size-limit/preset-small-lib': ^8.1.2
5 | eslint: ^8.33.0
6 | eslint-config-prettier: ^8.6.0
7 | eslint-config-standard: ^17.0.0
8 | eslint-plugin-import: ^2.27.5
9 | eslint-plugin-n: ^15.6.1
10 | eslint-plugin-promise: ^6.1.1
11 | eslint-plugin-react: ^7.32.2
12 | eslint-plugin-react-hooks: ^4.6.0
13 | microbundle: ^0.15.1
14 | npm-run-all: ^4.1.5
15 | prettier: ^2.8.3
16 | typescript: ^4.9.4
17 | vite: ^4.0.4
18 |
19 | devDependencies:
20 | '@size-limit/preset-small-lib': 8.1.2_size-limit@8.1.2
21 | eslint: 8.33.0
22 | eslint-config-prettier: 8.6.0_eslint@8.33.0
23 | eslint-config-standard: 17.0.0_xh3wrndcszbt2l7hdksdjqnjcq
24 | eslint-plugin-import: 2.27.5_eslint@8.33.0
25 | eslint-plugin-n: 15.6.1_eslint@8.33.0
26 | eslint-plugin-promise: 6.1.1_eslint@8.33.0
27 | eslint-plugin-react: 7.32.2_eslint@8.33.0
28 | eslint-plugin-react-hooks: 4.6.0_eslint@8.33.0
29 | microbundle: 0.15.1
30 | npm-run-all: 4.1.5
31 | prettier: 2.8.3
32 | typescript: 4.9.4
33 | vite: 4.0.4
34 |
35 | packages:
36 |
37 | /@ampproject/remapping/2.2.0:
38 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
39 | engines: {node: '>=6.0.0'}
40 | dependencies:
41 | '@jridgewell/gen-mapping': 0.1.1
42 | '@jridgewell/trace-mapping': 0.3.17
43 | dev: true
44 |
45 | /@babel/code-frame/7.18.6:
46 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
47 | engines: {node: '>=6.9.0'}
48 | dependencies:
49 | '@babel/highlight': 7.18.6
50 | dev: true
51 |
52 | /@babel/compat-data/7.20.14:
53 | resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==}
54 | engines: {node: '>=6.9.0'}
55 | dev: true
56 |
57 | /@babel/core/7.20.12:
58 | resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
59 | engines: {node: '>=6.9.0'}
60 | dependencies:
61 | '@ampproject/remapping': 2.2.0
62 | '@babel/code-frame': 7.18.6
63 | '@babel/generator': 7.20.14
64 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
65 | '@babel/helper-module-transforms': 7.20.11
66 | '@babel/helpers': 7.20.13
67 | '@babel/parser': 7.20.13
68 | '@babel/template': 7.20.7
69 | '@babel/traverse': 7.20.13
70 | '@babel/types': 7.20.7
71 | convert-source-map: 1.9.0
72 | debug: 4.3.4
73 | gensync: 1.0.0-beta.2
74 | json5: 2.2.3
75 | semver: 6.3.0
76 | transitivePeerDependencies:
77 | - supports-color
78 | dev: true
79 |
80 | /@babel/generator/7.20.14:
81 | resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
82 | engines: {node: '>=6.9.0'}
83 | dependencies:
84 | '@babel/types': 7.20.7
85 | '@jridgewell/gen-mapping': 0.3.2
86 | jsesc: 2.5.2
87 | dev: true
88 |
89 | /@babel/helper-annotate-as-pure/7.18.6:
90 | resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
91 | engines: {node: '>=6.9.0'}
92 | dependencies:
93 | '@babel/types': 7.20.7
94 | dev: true
95 |
96 | /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
97 | resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
98 | engines: {node: '>=6.9.0'}
99 | dependencies:
100 | '@babel/helper-explode-assignable-expression': 7.18.6
101 | '@babel/types': 7.20.7
102 | dev: true
103 |
104 | /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
105 | resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
106 | engines: {node: '>=6.9.0'}
107 | peerDependencies:
108 | '@babel/core': ^7.0.0
109 | dependencies:
110 | '@babel/compat-data': 7.20.14
111 | '@babel/core': 7.20.12
112 | '@babel/helper-validator-option': 7.18.6
113 | browserslist: 4.21.5
114 | lru-cache: 5.1.1
115 | semver: 6.3.0
116 | dev: true
117 |
118 | /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12:
119 | resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
120 | engines: {node: '>=6.9.0'}
121 | peerDependencies:
122 | '@babel/core': ^7.0.0
123 | dependencies:
124 | '@babel/core': 7.20.12
125 | '@babel/helper-annotate-as-pure': 7.18.6
126 | '@babel/helper-environment-visitor': 7.18.9
127 | '@babel/helper-function-name': 7.19.0
128 | '@babel/helper-member-expression-to-functions': 7.20.7
129 | '@babel/helper-optimise-call-expression': 7.18.6
130 | '@babel/helper-replace-supers': 7.20.7
131 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
132 | '@babel/helper-split-export-declaration': 7.18.6
133 | transitivePeerDependencies:
134 | - supports-color
135 | dev: true
136 |
137 | /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12:
138 | resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
139 | engines: {node: '>=6.9.0'}
140 | peerDependencies:
141 | '@babel/core': ^7.0.0
142 | dependencies:
143 | '@babel/core': 7.20.12
144 | '@babel/helper-annotate-as-pure': 7.18.6
145 | regexpu-core: 5.2.2
146 | dev: true
147 |
148 | /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12:
149 | resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
150 | peerDependencies:
151 | '@babel/core': ^7.4.0-0
152 | dependencies:
153 | '@babel/core': 7.20.12
154 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
155 | '@babel/helper-plugin-utils': 7.20.2
156 | debug: 4.3.4
157 | lodash.debounce: 4.0.8
158 | resolve: 1.22.1
159 | semver: 6.3.0
160 | transitivePeerDependencies:
161 | - supports-color
162 | dev: true
163 |
164 | /@babel/helper-environment-visitor/7.18.9:
165 | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
166 | engines: {node: '>=6.9.0'}
167 | dev: true
168 |
169 | /@babel/helper-explode-assignable-expression/7.18.6:
170 | resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
171 | engines: {node: '>=6.9.0'}
172 | dependencies:
173 | '@babel/types': 7.20.7
174 | dev: true
175 |
176 | /@babel/helper-function-name/7.19.0:
177 | resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
178 | engines: {node: '>=6.9.0'}
179 | dependencies:
180 | '@babel/template': 7.20.7
181 | '@babel/types': 7.20.7
182 | dev: true
183 |
184 | /@babel/helper-hoist-variables/7.18.6:
185 | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
186 | engines: {node: '>=6.9.0'}
187 | dependencies:
188 | '@babel/types': 7.20.7
189 | dev: true
190 |
191 | /@babel/helper-member-expression-to-functions/7.20.7:
192 | resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
193 | engines: {node: '>=6.9.0'}
194 | dependencies:
195 | '@babel/types': 7.20.7
196 | dev: true
197 |
198 | /@babel/helper-module-imports/7.18.6:
199 | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
200 | engines: {node: '>=6.9.0'}
201 | dependencies:
202 | '@babel/types': 7.20.7
203 | dev: true
204 |
205 | /@babel/helper-module-transforms/7.20.11:
206 | resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
207 | engines: {node: '>=6.9.0'}
208 | dependencies:
209 | '@babel/helper-environment-visitor': 7.18.9
210 | '@babel/helper-module-imports': 7.18.6
211 | '@babel/helper-simple-access': 7.20.2
212 | '@babel/helper-split-export-declaration': 7.18.6
213 | '@babel/helper-validator-identifier': 7.19.1
214 | '@babel/template': 7.20.7
215 | '@babel/traverse': 7.20.13
216 | '@babel/types': 7.20.7
217 | transitivePeerDependencies:
218 | - supports-color
219 | dev: true
220 |
221 | /@babel/helper-optimise-call-expression/7.18.6:
222 | resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
223 | engines: {node: '>=6.9.0'}
224 | dependencies:
225 | '@babel/types': 7.20.7
226 | dev: true
227 |
228 | /@babel/helper-plugin-utils/7.20.2:
229 | resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
230 | engines: {node: '>=6.9.0'}
231 | dev: true
232 |
233 | /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12:
234 | resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
235 | engines: {node: '>=6.9.0'}
236 | peerDependencies:
237 | '@babel/core': ^7.0.0
238 | dependencies:
239 | '@babel/core': 7.20.12
240 | '@babel/helper-annotate-as-pure': 7.18.6
241 | '@babel/helper-environment-visitor': 7.18.9
242 | '@babel/helper-wrap-function': 7.20.5
243 | '@babel/types': 7.20.7
244 | transitivePeerDependencies:
245 | - supports-color
246 | dev: true
247 |
248 | /@babel/helper-replace-supers/7.20.7:
249 | resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
250 | engines: {node: '>=6.9.0'}
251 | dependencies:
252 | '@babel/helper-environment-visitor': 7.18.9
253 | '@babel/helper-member-expression-to-functions': 7.20.7
254 | '@babel/helper-optimise-call-expression': 7.18.6
255 | '@babel/template': 7.20.7
256 | '@babel/traverse': 7.20.13
257 | '@babel/types': 7.20.7
258 | transitivePeerDependencies:
259 | - supports-color
260 | dev: true
261 |
262 | /@babel/helper-simple-access/7.20.2:
263 | resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
264 | engines: {node: '>=6.9.0'}
265 | dependencies:
266 | '@babel/types': 7.20.7
267 | dev: true
268 |
269 | /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
270 | resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
271 | engines: {node: '>=6.9.0'}
272 | dependencies:
273 | '@babel/types': 7.20.7
274 | dev: true
275 |
276 | /@babel/helper-split-export-declaration/7.18.6:
277 | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
278 | engines: {node: '>=6.9.0'}
279 | dependencies:
280 | '@babel/types': 7.20.7
281 | dev: true
282 |
283 | /@babel/helper-string-parser/7.19.4:
284 | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
285 | engines: {node: '>=6.9.0'}
286 | dev: true
287 |
288 | /@babel/helper-validator-identifier/7.19.1:
289 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
290 | engines: {node: '>=6.9.0'}
291 | dev: true
292 |
293 | /@babel/helper-validator-option/7.18.6:
294 | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
295 | engines: {node: '>=6.9.0'}
296 | dev: true
297 |
298 | /@babel/helper-wrap-function/7.20.5:
299 | resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
300 | engines: {node: '>=6.9.0'}
301 | dependencies:
302 | '@babel/helper-function-name': 7.19.0
303 | '@babel/template': 7.20.7
304 | '@babel/traverse': 7.20.13
305 | '@babel/types': 7.20.7
306 | transitivePeerDependencies:
307 | - supports-color
308 | dev: true
309 |
310 | /@babel/helpers/7.20.13:
311 | resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==}
312 | engines: {node: '>=6.9.0'}
313 | dependencies:
314 | '@babel/template': 7.20.7
315 | '@babel/traverse': 7.20.13
316 | '@babel/types': 7.20.7
317 | transitivePeerDependencies:
318 | - supports-color
319 | dev: true
320 |
321 | /@babel/highlight/7.18.6:
322 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
323 | engines: {node: '>=6.9.0'}
324 | dependencies:
325 | '@babel/helper-validator-identifier': 7.19.1
326 | chalk: 2.4.2
327 | js-tokens: 4.0.0
328 | dev: true
329 |
330 | /@babel/parser/7.20.13:
331 | resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==}
332 | engines: {node: '>=6.0.0'}
333 | hasBin: true
334 | dependencies:
335 | '@babel/types': 7.20.7
336 | dev: true
337 |
338 | /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12:
339 | resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
340 | engines: {node: '>=6.9.0'}
341 | peerDependencies:
342 | '@babel/core': ^7.0.0
343 | dependencies:
344 | '@babel/core': 7.20.12
345 | '@babel/helper-plugin-utils': 7.20.2
346 | dev: true
347 |
348 | /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12:
349 | resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
350 | engines: {node: '>=6.9.0'}
351 | peerDependencies:
352 | '@babel/core': ^7.13.0
353 | dependencies:
354 | '@babel/core': 7.20.12
355 | '@babel/helper-plugin-utils': 7.20.2
356 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
357 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
358 | dev: true
359 |
360 | /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12:
361 | resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
362 | engines: {node: '>=6.9.0'}
363 | peerDependencies:
364 | '@babel/core': ^7.0.0-0
365 | dependencies:
366 | '@babel/core': 7.20.12
367 | '@babel/helper-environment-visitor': 7.18.9
368 | '@babel/helper-plugin-utils': 7.20.2
369 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
370 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
371 | transitivePeerDependencies:
372 | - supports-color
373 | dev: true
374 |
375 | /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.20.12:
376 | resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==}
377 | peerDependencies:
378 | '@babel/core': ^7.0.0-0
379 | dependencies:
380 | '@babel/core': 7.20.12
381 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
382 | '@babel/helper-plugin-utils': 7.20.2
383 | transitivePeerDependencies:
384 | - supports-color
385 | dev: true
386 |
387 | /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12:
388 | resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
389 | engines: {node: '>=6.9.0'}
390 | peerDependencies:
391 | '@babel/core': ^7.0.0-0
392 | dependencies:
393 | '@babel/core': 7.20.12
394 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
395 | '@babel/helper-plugin-utils': 7.20.2
396 | transitivePeerDependencies:
397 | - supports-color
398 | dev: true
399 |
400 | /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12:
401 | resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==}
402 | engines: {node: '>=6.9.0'}
403 | peerDependencies:
404 | '@babel/core': ^7.12.0
405 | dependencies:
406 | '@babel/core': 7.20.12
407 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
408 | '@babel/helper-plugin-utils': 7.20.2
409 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
410 | transitivePeerDependencies:
411 | - supports-color
412 | dev: true
413 |
414 | /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12:
415 | resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
416 | engines: {node: '>=6.9.0'}
417 | peerDependencies:
418 | '@babel/core': ^7.0.0-0
419 | dependencies:
420 | '@babel/core': 7.20.12
421 | '@babel/helper-plugin-utils': 7.20.2
422 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
423 | dev: true
424 |
425 | /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12:
426 | resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
427 | engines: {node: '>=6.9.0'}
428 | peerDependencies:
429 | '@babel/core': ^7.0.0-0
430 | dependencies:
431 | '@babel/core': 7.20.12
432 | '@babel/helper-plugin-utils': 7.20.2
433 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
434 | dev: true
435 |
436 | /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12:
437 | resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
438 | engines: {node: '>=6.9.0'}
439 | peerDependencies:
440 | '@babel/core': ^7.0.0-0
441 | dependencies:
442 | '@babel/core': 7.20.12
443 | '@babel/helper-plugin-utils': 7.20.2
444 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
445 | dev: true
446 |
447 | /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12:
448 | resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
449 | engines: {node: '>=6.9.0'}
450 | peerDependencies:
451 | '@babel/core': ^7.0.0-0
452 | dependencies:
453 | '@babel/core': 7.20.12
454 | '@babel/helper-plugin-utils': 7.20.2
455 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
456 | dev: true
457 |
458 | /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12:
459 | resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
460 | engines: {node: '>=6.9.0'}
461 | peerDependencies:
462 | '@babel/core': ^7.0.0-0
463 | dependencies:
464 | '@babel/core': 7.20.12
465 | '@babel/helper-plugin-utils': 7.20.2
466 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
467 | dev: true
468 |
469 | /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12:
470 | resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
471 | engines: {node: '>=6.9.0'}
472 | peerDependencies:
473 | '@babel/core': ^7.0.0-0
474 | dependencies:
475 | '@babel/core': 7.20.12
476 | '@babel/helper-plugin-utils': 7.20.2
477 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
478 | dev: true
479 |
480 | /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12:
481 | resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
482 | engines: {node: '>=6.9.0'}
483 | peerDependencies:
484 | '@babel/core': ^7.0.0-0
485 | dependencies:
486 | '@babel/compat-data': 7.20.14
487 | '@babel/core': 7.20.12
488 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
489 | '@babel/helper-plugin-utils': 7.20.2
490 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
491 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
492 | dev: true
493 |
494 | /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12:
495 | resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
496 | engines: {node: '>=6.9.0'}
497 | peerDependencies:
498 | '@babel/core': ^7.0.0-0
499 | dependencies:
500 | '@babel/core': 7.20.12
501 | '@babel/helper-plugin-utils': 7.20.2
502 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
503 | dev: true
504 |
505 | /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12:
506 | resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==}
507 | engines: {node: '>=6.9.0'}
508 | peerDependencies:
509 | '@babel/core': ^7.0.0-0
510 | dependencies:
511 | '@babel/core': 7.20.12
512 | '@babel/helper-plugin-utils': 7.20.2
513 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
514 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
515 | dev: true
516 |
517 | /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12:
518 | resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
519 | engines: {node: '>=6.9.0'}
520 | peerDependencies:
521 | '@babel/core': ^7.0.0-0
522 | dependencies:
523 | '@babel/core': 7.20.12
524 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
525 | '@babel/helper-plugin-utils': 7.20.2
526 | transitivePeerDependencies:
527 | - supports-color
528 | dev: true
529 |
530 | /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12:
531 | resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
532 | engines: {node: '>=6.9.0'}
533 | peerDependencies:
534 | '@babel/core': ^7.0.0-0
535 | dependencies:
536 | '@babel/core': 7.20.12
537 | '@babel/helper-annotate-as-pure': 7.18.6
538 | '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
539 | '@babel/helper-plugin-utils': 7.20.2
540 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
541 | transitivePeerDependencies:
542 | - supports-color
543 | dev: true
544 |
545 | /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12:
546 | resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
547 | engines: {node: '>=4'}
548 | peerDependencies:
549 | '@babel/core': ^7.0.0-0
550 | dependencies:
551 | '@babel/core': 7.20.12
552 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
553 | '@babel/helper-plugin-utils': 7.20.2
554 | dev: true
555 |
556 | /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12:
557 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
558 | peerDependencies:
559 | '@babel/core': ^7.0.0-0
560 | dependencies:
561 | '@babel/core': 7.20.12
562 | '@babel/helper-plugin-utils': 7.20.2
563 | dev: true
564 |
565 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12:
566 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
567 | peerDependencies:
568 | '@babel/core': ^7.0.0-0
569 | dependencies:
570 | '@babel/core': 7.20.12
571 | '@babel/helper-plugin-utils': 7.20.2
572 | dev: true
573 |
574 | /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12:
575 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
576 | engines: {node: '>=6.9.0'}
577 | peerDependencies:
578 | '@babel/core': ^7.0.0-0
579 | dependencies:
580 | '@babel/core': 7.20.12
581 | '@babel/helper-plugin-utils': 7.20.2
582 | dev: true
583 |
584 | /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12:
585 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
586 | peerDependencies:
587 | '@babel/core': ^7.0.0-0
588 | dependencies:
589 | '@babel/core': 7.20.12
590 | '@babel/helper-plugin-utils': 7.20.2
591 | dev: true
592 |
593 | /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12:
594 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
595 | peerDependencies:
596 | '@babel/core': ^7.0.0-0
597 | dependencies:
598 | '@babel/core': 7.20.12
599 | '@babel/helper-plugin-utils': 7.20.2
600 | dev: true
601 |
602 | /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.12:
603 | resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
604 | engines: {node: '>=6.9.0'}
605 | peerDependencies:
606 | '@babel/core': ^7.0.0-0
607 | dependencies:
608 | '@babel/core': 7.20.12
609 | '@babel/helper-plugin-utils': 7.20.2
610 | dev: true
611 |
612 | /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12:
613 | resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
614 | engines: {node: '>=6.9.0'}
615 | peerDependencies:
616 | '@babel/core': ^7.0.0-0
617 | dependencies:
618 | '@babel/core': 7.20.12
619 | '@babel/helper-plugin-utils': 7.20.2
620 | dev: true
621 |
622 | /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.12:
623 | resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
624 | peerDependencies:
625 | '@babel/core': ^7.0.0-0
626 | dependencies:
627 | '@babel/core': 7.20.12
628 | '@babel/helper-plugin-utils': 7.20.2
629 | dev: true
630 |
631 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12:
632 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
633 | peerDependencies:
634 | '@babel/core': ^7.0.0-0
635 | dependencies:
636 | '@babel/core': 7.20.12
637 | '@babel/helper-plugin-utils': 7.20.2
638 | dev: true
639 |
640 | /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12:
641 | resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
642 | engines: {node: '>=6.9.0'}
643 | peerDependencies:
644 | '@babel/core': ^7.0.0-0
645 | dependencies:
646 | '@babel/core': 7.20.12
647 | '@babel/helper-plugin-utils': 7.20.2
648 | dev: true
649 |
650 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12:
651 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
652 | peerDependencies:
653 | '@babel/core': ^7.0.0-0
654 | dependencies:
655 | '@babel/core': 7.20.12
656 | '@babel/helper-plugin-utils': 7.20.2
657 | dev: true
658 |
659 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12:
660 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
661 | peerDependencies:
662 | '@babel/core': ^7.0.0-0
663 | dependencies:
664 | '@babel/core': 7.20.12
665 | '@babel/helper-plugin-utils': 7.20.2
666 | dev: true
667 |
668 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12:
669 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
670 | peerDependencies:
671 | '@babel/core': ^7.0.0-0
672 | dependencies:
673 | '@babel/core': 7.20.12
674 | '@babel/helper-plugin-utils': 7.20.2
675 | dev: true
676 |
677 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12:
678 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
679 | peerDependencies:
680 | '@babel/core': ^7.0.0-0
681 | dependencies:
682 | '@babel/core': 7.20.12
683 | '@babel/helper-plugin-utils': 7.20.2
684 | dev: true
685 |
686 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12:
687 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
688 | peerDependencies:
689 | '@babel/core': ^7.0.0-0
690 | dependencies:
691 | '@babel/core': 7.20.12
692 | '@babel/helper-plugin-utils': 7.20.2
693 | dev: true
694 |
695 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12:
696 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
697 | peerDependencies:
698 | '@babel/core': ^7.0.0-0
699 | dependencies:
700 | '@babel/core': 7.20.12
701 | '@babel/helper-plugin-utils': 7.20.2
702 | dev: true
703 |
704 | /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12:
705 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
706 | engines: {node: '>=6.9.0'}
707 | peerDependencies:
708 | '@babel/core': ^7.0.0-0
709 | dependencies:
710 | '@babel/core': 7.20.12
711 | '@babel/helper-plugin-utils': 7.20.2
712 | dev: true
713 |
714 | /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12:
715 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
716 | engines: {node: '>=6.9.0'}
717 | peerDependencies:
718 | '@babel/core': ^7.0.0-0
719 | dependencies:
720 | '@babel/core': 7.20.12
721 | '@babel/helper-plugin-utils': 7.20.2
722 | dev: true
723 |
724 | /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12:
725 | resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
726 | engines: {node: '>=6.9.0'}
727 | peerDependencies:
728 | '@babel/core': ^7.0.0-0
729 | dependencies:
730 | '@babel/core': 7.20.12
731 | '@babel/helper-plugin-utils': 7.20.2
732 | dev: true
733 |
734 | /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12:
735 | resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
736 | engines: {node: '>=6.9.0'}
737 | peerDependencies:
738 | '@babel/core': ^7.0.0-0
739 | dependencies:
740 | '@babel/core': 7.20.12
741 | '@babel/helper-module-imports': 7.18.6
742 | '@babel/helper-plugin-utils': 7.20.2
743 | '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
744 | transitivePeerDependencies:
745 | - supports-color
746 | dev: true
747 |
748 | /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12:
749 | resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
750 | engines: {node: '>=6.9.0'}
751 | peerDependencies:
752 | '@babel/core': ^7.0.0-0
753 | dependencies:
754 | '@babel/core': 7.20.12
755 | '@babel/helper-plugin-utils': 7.20.2
756 | dev: true
757 |
758 | /@babel/plugin-transform-block-scoping/7.20.14_@babel+core@7.20.12:
759 | resolution: {integrity: sha512-sMPepQtsOs5fM1bwNvuJJHvaCfOEQfmc01FGw0ELlTpTJj5Ql/zuNRRldYhAPys4ghXdBIQJbRVYi44/7QflQQ==}
760 | engines: {node: '>=6.9.0'}
761 | peerDependencies:
762 | '@babel/core': ^7.0.0-0
763 | dependencies:
764 | '@babel/core': 7.20.12
765 | '@babel/helper-plugin-utils': 7.20.2
766 | dev: true
767 |
768 | /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12:
769 | resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
770 | engines: {node: '>=6.9.0'}
771 | peerDependencies:
772 | '@babel/core': ^7.0.0-0
773 | dependencies:
774 | '@babel/core': 7.20.12
775 | '@babel/helper-annotate-as-pure': 7.18.6
776 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
777 | '@babel/helper-environment-visitor': 7.18.9
778 | '@babel/helper-function-name': 7.19.0
779 | '@babel/helper-optimise-call-expression': 7.18.6
780 | '@babel/helper-plugin-utils': 7.20.2
781 | '@babel/helper-replace-supers': 7.20.7
782 | '@babel/helper-split-export-declaration': 7.18.6
783 | globals: 11.12.0
784 | transitivePeerDependencies:
785 | - supports-color
786 | dev: true
787 |
788 | /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12:
789 | resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
790 | engines: {node: '>=6.9.0'}
791 | peerDependencies:
792 | '@babel/core': ^7.0.0-0
793 | dependencies:
794 | '@babel/core': 7.20.12
795 | '@babel/helper-plugin-utils': 7.20.2
796 | '@babel/template': 7.20.7
797 | dev: true
798 |
799 | /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12:
800 | resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
801 | engines: {node: '>=6.9.0'}
802 | peerDependencies:
803 | '@babel/core': ^7.0.0-0
804 | dependencies:
805 | '@babel/core': 7.20.12
806 | '@babel/helper-plugin-utils': 7.20.2
807 | dev: true
808 |
809 | /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12:
810 | resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
811 | engines: {node: '>=6.9.0'}
812 | peerDependencies:
813 | '@babel/core': ^7.0.0-0
814 | dependencies:
815 | '@babel/core': 7.20.12
816 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
817 | '@babel/helper-plugin-utils': 7.20.2
818 | dev: true
819 |
820 | /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12:
821 | resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
822 | engines: {node: '>=6.9.0'}
823 | peerDependencies:
824 | '@babel/core': ^7.0.0-0
825 | dependencies:
826 | '@babel/core': 7.20.12
827 | '@babel/helper-plugin-utils': 7.20.2
828 | dev: true
829 |
830 | /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12:
831 | resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
832 | engines: {node: '>=6.9.0'}
833 | peerDependencies:
834 | '@babel/core': ^7.0.0-0
835 | dependencies:
836 | '@babel/core': 7.20.12
837 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
838 | '@babel/helper-plugin-utils': 7.20.2
839 | dev: true
840 |
841 | /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.12:
842 | resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
843 | engines: {node: '>=6.9.0'}
844 | peerDependencies:
845 | '@babel/core': ^7.0.0-0
846 | dependencies:
847 | '@babel/core': 7.20.12
848 | '@babel/helper-plugin-utils': 7.20.2
849 | '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12
850 | dev: true
851 |
852 | /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12:
853 | resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
854 | engines: {node: '>=6.9.0'}
855 | peerDependencies:
856 | '@babel/core': ^7.0.0-0
857 | dependencies:
858 | '@babel/core': 7.20.12
859 | '@babel/helper-plugin-utils': 7.20.2
860 | dev: true
861 |
862 | /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12:
863 | resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
864 | engines: {node: '>=6.9.0'}
865 | peerDependencies:
866 | '@babel/core': ^7.0.0-0
867 | dependencies:
868 | '@babel/core': 7.20.12
869 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
870 | '@babel/helper-function-name': 7.19.0
871 | '@babel/helper-plugin-utils': 7.20.2
872 | dev: true
873 |
874 | /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12:
875 | resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
876 | engines: {node: '>=6.9.0'}
877 | peerDependencies:
878 | '@babel/core': ^7.0.0-0
879 | dependencies:
880 | '@babel/core': 7.20.12
881 | '@babel/helper-plugin-utils': 7.20.2
882 | dev: true
883 |
884 | /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12:
885 | resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
886 | engines: {node: '>=6.9.0'}
887 | peerDependencies:
888 | '@babel/core': ^7.0.0-0
889 | dependencies:
890 | '@babel/core': 7.20.12
891 | '@babel/helper-plugin-utils': 7.20.2
892 | dev: true
893 |
894 | /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12:
895 | resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
896 | engines: {node: '>=6.9.0'}
897 | peerDependencies:
898 | '@babel/core': ^7.0.0-0
899 | dependencies:
900 | '@babel/core': 7.20.12
901 | '@babel/helper-module-transforms': 7.20.11
902 | '@babel/helper-plugin-utils': 7.20.2
903 | transitivePeerDependencies:
904 | - supports-color
905 | dev: true
906 |
907 | /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12:
908 | resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
909 | engines: {node: '>=6.9.0'}
910 | peerDependencies:
911 | '@babel/core': ^7.0.0-0
912 | dependencies:
913 | '@babel/core': 7.20.12
914 | '@babel/helper-module-transforms': 7.20.11
915 | '@babel/helper-plugin-utils': 7.20.2
916 | '@babel/helper-simple-access': 7.20.2
917 | transitivePeerDependencies:
918 | - supports-color
919 | dev: true
920 |
921 | /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12:
922 | resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
923 | engines: {node: '>=6.9.0'}
924 | peerDependencies:
925 | '@babel/core': ^7.0.0-0
926 | dependencies:
927 | '@babel/core': 7.20.12
928 | '@babel/helper-hoist-variables': 7.18.6
929 | '@babel/helper-module-transforms': 7.20.11
930 | '@babel/helper-plugin-utils': 7.20.2
931 | '@babel/helper-validator-identifier': 7.19.1
932 | transitivePeerDependencies:
933 | - supports-color
934 | dev: true
935 |
936 | /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12:
937 | resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
938 | engines: {node: '>=6.9.0'}
939 | peerDependencies:
940 | '@babel/core': ^7.0.0-0
941 | dependencies:
942 | '@babel/core': 7.20.12
943 | '@babel/helper-module-transforms': 7.20.11
944 | '@babel/helper-plugin-utils': 7.20.2
945 | transitivePeerDependencies:
946 | - supports-color
947 | dev: true
948 |
949 | /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12:
950 | resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
951 | engines: {node: '>=6.9.0'}
952 | peerDependencies:
953 | '@babel/core': ^7.0.0
954 | dependencies:
955 | '@babel/core': 7.20.12
956 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
957 | '@babel/helper-plugin-utils': 7.20.2
958 | dev: true
959 |
960 | /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12:
961 | resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
962 | engines: {node: '>=6.9.0'}
963 | peerDependencies:
964 | '@babel/core': ^7.0.0-0
965 | dependencies:
966 | '@babel/core': 7.20.12
967 | '@babel/helper-plugin-utils': 7.20.2
968 | dev: true
969 |
970 | /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12:
971 | resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
972 | engines: {node: '>=6.9.0'}
973 | peerDependencies:
974 | '@babel/core': ^7.0.0-0
975 | dependencies:
976 | '@babel/core': 7.20.12
977 | '@babel/helper-plugin-utils': 7.20.2
978 | '@babel/helper-replace-supers': 7.20.7
979 | transitivePeerDependencies:
980 | - supports-color
981 | dev: true
982 |
983 | /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12:
984 | resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
985 | engines: {node: '>=6.9.0'}
986 | peerDependencies:
987 | '@babel/core': ^7.0.0-0
988 | dependencies:
989 | '@babel/core': 7.20.12
990 | '@babel/helper-plugin-utils': 7.20.2
991 | dev: true
992 |
993 | /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12:
994 | resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
995 | engines: {node: '>=6.9.0'}
996 | peerDependencies:
997 | '@babel/core': ^7.0.0-0
998 | dependencies:
999 | '@babel/core': 7.20.12
1000 | '@babel/helper-plugin-utils': 7.20.2
1001 | dev: true
1002 |
1003 | /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12:
1004 | resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
1005 | engines: {node: '>=6.9.0'}
1006 | peerDependencies:
1007 | '@babel/core': ^7.0.0-0
1008 | dependencies:
1009 | '@babel/core': 7.20.12
1010 | '@babel/helper-plugin-utils': 7.20.2
1011 | dev: true
1012 |
1013 | /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12:
1014 | resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
1015 | engines: {node: '>=6.9.0'}
1016 | peerDependencies:
1017 | '@babel/core': ^7.0.0-0
1018 | dependencies:
1019 | '@babel/core': 7.20.12
1020 | '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12
1021 | dev: true
1022 |
1023 | /@babel/plugin-transform-react-jsx/7.20.13_@babel+core@7.20.12:
1024 | resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==}
1025 | engines: {node: '>=6.9.0'}
1026 | peerDependencies:
1027 | '@babel/core': ^7.0.0-0
1028 | dependencies:
1029 | '@babel/core': 7.20.12
1030 | '@babel/helper-annotate-as-pure': 7.18.6
1031 | '@babel/helper-module-imports': 7.18.6
1032 | '@babel/helper-plugin-utils': 7.20.2
1033 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
1034 | '@babel/types': 7.20.7
1035 | dev: true
1036 |
1037 | /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12:
1038 | resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
1039 | engines: {node: '>=6.9.0'}
1040 | peerDependencies:
1041 | '@babel/core': ^7.0.0-0
1042 | dependencies:
1043 | '@babel/core': 7.20.12
1044 | '@babel/helper-annotate-as-pure': 7.18.6
1045 | '@babel/helper-plugin-utils': 7.20.2
1046 | dev: true
1047 |
1048 | /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12:
1049 | resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
1050 | engines: {node: '>=6.9.0'}
1051 | peerDependencies:
1052 | '@babel/core': ^7.0.0-0
1053 | dependencies:
1054 | '@babel/core': 7.20.12
1055 | '@babel/helper-plugin-utils': 7.20.2
1056 | regenerator-transform: 0.15.1
1057 | dev: true
1058 |
1059 | /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12:
1060 | resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
1061 | engines: {node: '>=6.9.0'}
1062 | peerDependencies:
1063 | '@babel/core': ^7.0.0-0
1064 | dependencies:
1065 | '@babel/core': 7.20.12
1066 | '@babel/helper-plugin-utils': 7.20.2
1067 | dev: true
1068 |
1069 | /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
1070 | resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
1071 | engines: {node: '>=6.9.0'}
1072 | peerDependencies:
1073 | '@babel/core': ^7.0.0-0
1074 | dependencies:
1075 | '@babel/core': 7.20.12
1076 | '@babel/helper-plugin-utils': 7.20.2
1077 | dev: true
1078 |
1079 | /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12:
1080 | resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
1081 | engines: {node: '>=6.9.0'}
1082 | peerDependencies:
1083 | '@babel/core': ^7.0.0-0
1084 | dependencies:
1085 | '@babel/core': 7.20.12
1086 | '@babel/helper-plugin-utils': 7.20.2
1087 | '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
1088 | dev: true
1089 |
1090 | /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12:
1091 | resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
1092 | engines: {node: '>=6.9.0'}
1093 | peerDependencies:
1094 | '@babel/core': ^7.0.0-0
1095 | dependencies:
1096 | '@babel/core': 7.20.12
1097 | '@babel/helper-plugin-utils': 7.20.2
1098 | dev: true
1099 |
1100 | /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12:
1101 | resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
1102 | engines: {node: '>=6.9.0'}
1103 | peerDependencies:
1104 | '@babel/core': ^7.0.0-0
1105 | dependencies:
1106 | '@babel/core': 7.20.12
1107 | '@babel/helper-plugin-utils': 7.20.2
1108 | dev: true
1109 |
1110 | /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12:
1111 | resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
1112 | engines: {node: '>=6.9.0'}
1113 | peerDependencies:
1114 | '@babel/core': ^7.0.0-0
1115 | dependencies:
1116 | '@babel/core': 7.20.12
1117 | '@babel/helper-plugin-utils': 7.20.2
1118 | dev: true
1119 |
1120 | /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12:
1121 | resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
1122 | engines: {node: '>=6.9.0'}
1123 | peerDependencies:
1124 | '@babel/core': ^7.0.0-0
1125 | dependencies:
1126 | '@babel/core': 7.20.12
1127 | '@babel/helper-plugin-utils': 7.20.2
1128 | dev: true
1129 |
1130 | /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12:
1131 | resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
1132 | engines: {node: '>=6.9.0'}
1133 | peerDependencies:
1134 | '@babel/core': ^7.0.0-0
1135 | dependencies:
1136 | '@babel/core': 7.20.12
1137 | '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
1138 | '@babel/helper-plugin-utils': 7.20.2
1139 | dev: true
1140 |
1141 | /@babel/preset-env/7.20.2_@babel+core@7.20.12:
1142 | resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
1143 | engines: {node: '>=6.9.0'}
1144 | peerDependencies:
1145 | '@babel/core': ^7.0.0-0
1146 | dependencies:
1147 | '@babel/compat-data': 7.20.14
1148 | '@babel/core': 7.20.12
1149 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
1150 | '@babel/helper-plugin-utils': 7.20.2
1151 | '@babel/helper-validator-option': 7.18.6
1152 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12
1153 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12
1154 | '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12
1155 | '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
1156 | '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12
1157 | '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12
1158 | '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12
1159 | '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12
1160 | '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12
1161 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
1162 | '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
1163 | '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
1164 | '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12
1165 | '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
1166 | '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
1167 | '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
1168 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
1169 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
1170 | '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
1171 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
1172 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
1173 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
1174 | '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
1175 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
1176 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
1177 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
1178 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
1179 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
1180 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
1181 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
1182 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
1183 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
1184 | '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
1185 | '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12
1186 | '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12
1187 | '@babel/plugin-transform-block-scoping': 7.20.14_@babel+core@7.20.12
1188 | '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
1189 | '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12
1190 | '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
1191 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
1192 | '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12
1193 | '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12
1194 | '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
1195 | '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12
1196 | '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12
1197 | '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12
1198 | '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12
1199 | '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
1200 | '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12
1201 | '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12
1202 | '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12
1203 | '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12
1204 | '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12
1205 | '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
1206 | '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12
1207 | '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
1208 | '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12
1209 | '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
1210 | '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
1211 | '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12
1212 | '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
1213 | '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12
1214 | '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12
1215 | '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12
1216 | '@babel/preset-modules': 0.1.5_@babel+core@7.20.12
1217 | '@babel/types': 7.20.7
1218 | babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
1219 | babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
1220 | babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
1221 | core-js-compat: 3.27.2
1222 | semver: 6.3.0
1223 | transitivePeerDependencies:
1224 | - supports-color
1225 | dev: true
1226 |
1227 | /@babel/preset-flow/7.18.6_@babel+core@7.20.12:
1228 | resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==}
1229 | engines: {node: '>=6.9.0'}
1230 | peerDependencies:
1231 | '@babel/core': ^7.0.0-0
1232 | dependencies:
1233 | '@babel/core': 7.20.12
1234 | '@babel/helper-plugin-utils': 7.20.2
1235 | '@babel/helper-validator-option': 7.18.6
1236 | '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12
1237 | dev: true
1238 |
1239 | /@babel/preset-modules/0.1.5_@babel+core@7.20.12:
1240 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
1241 | peerDependencies:
1242 | '@babel/core': ^7.0.0-0
1243 | dependencies:
1244 | '@babel/core': 7.20.12
1245 | '@babel/helper-plugin-utils': 7.20.2
1246 | '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
1247 | '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
1248 | '@babel/types': 7.20.7
1249 | esutils: 2.0.3
1250 | dev: true
1251 |
1252 | /@babel/preset-react/7.18.6_@babel+core@7.20.12:
1253 | resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
1254 | engines: {node: '>=6.9.0'}
1255 | peerDependencies:
1256 | '@babel/core': ^7.0.0-0
1257 | dependencies:
1258 | '@babel/core': 7.20.12
1259 | '@babel/helper-plugin-utils': 7.20.2
1260 | '@babel/helper-validator-option': 7.18.6
1261 | '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12
1262 | '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12
1263 | '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12
1264 | '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12
1265 | dev: true
1266 |
1267 | /@babel/runtime/7.20.13:
1268 | resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==}
1269 | engines: {node: '>=6.9.0'}
1270 | dependencies:
1271 | regenerator-runtime: 0.13.11
1272 | dev: true
1273 |
1274 | /@babel/template/7.20.7:
1275 | resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
1276 | engines: {node: '>=6.9.0'}
1277 | dependencies:
1278 | '@babel/code-frame': 7.18.6
1279 | '@babel/parser': 7.20.13
1280 | '@babel/types': 7.20.7
1281 | dev: true
1282 |
1283 | /@babel/traverse/7.20.13:
1284 | resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
1285 | engines: {node: '>=6.9.0'}
1286 | dependencies:
1287 | '@babel/code-frame': 7.18.6
1288 | '@babel/generator': 7.20.14
1289 | '@babel/helper-environment-visitor': 7.18.9
1290 | '@babel/helper-function-name': 7.19.0
1291 | '@babel/helper-hoist-variables': 7.18.6
1292 | '@babel/helper-split-export-declaration': 7.18.6
1293 | '@babel/parser': 7.20.13
1294 | '@babel/types': 7.20.7
1295 | debug: 4.3.4
1296 | globals: 11.12.0
1297 | transitivePeerDependencies:
1298 | - supports-color
1299 | dev: true
1300 |
1301 | /@babel/types/7.20.7:
1302 | resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
1303 | engines: {node: '>=6.9.0'}
1304 | dependencies:
1305 | '@babel/helper-string-parser': 7.19.4
1306 | '@babel/helper-validator-identifier': 7.19.1
1307 | to-fast-properties: 2.0.0
1308 | dev: true
1309 |
1310 | /@esbuild/android-arm/0.16.17:
1311 | resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==}
1312 | engines: {node: '>=12'}
1313 | cpu: [arm]
1314 | os: [android]
1315 | requiresBuild: true
1316 | dev: true
1317 | optional: true
1318 |
1319 | /@esbuild/android-arm/0.17.4:
1320 | resolution: {integrity: sha512-R9GCe2xl2XDSc2XbQB63mFiFXHIVkOP+ltIxICKXqUPrFX97z6Z7vONCLQM1pSOLGqfLrGi3B7nbhxmFY/fomg==}
1321 | engines: {node: '>=12'}
1322 | cpu: [arm]
1323 | os: [android]
1324 | requiresBuild: true
1325 | dev: true
1326 | optional: true
1327 |
1328 | /@esbuild/android-arm64/0.16.17:
1329 | resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==}
1330 | engines: {node: '>=12'}
1331 | cpu: [arm64]
1332 | os: [android]
1333 | requiresBuild: true
1334 | dev: true
1335 | optional: true
1336 |
1337 | /@esbuild/android-arm64/0.17.4:
1338 | resolution: {integrity: sha512-91VwDrl4EpxBCiG6h2LZZEkuNvVZYJkv2T9gyLG/mhGG1qrM7i5SwUcg/hlSPnL/4hDT0TFcF35/XMGSn0bemg==}
1339 | engines: {node: '>=12'}
1340 | cpu: [arm64]
1341 | os: [android]
1342 | requiresBuild: true
1343 | dev: true
1344 | optional: true
1345 |
1346 | /@esbuild/android-x64/0.16.17:
1347 | resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==}
1348 | engines: {node: '>=12'}
1349 | cpu: [x64]
1350 | os: [android]
1351 | requiresBuild: true
1352 | dev: true
1353 | optional: true
1354 |
1355 | /@esbuild/android-x64/0.17.4:
1356 | resolution: {integrity: sha512-mGSqhEPL7029XL7QHNPxPs15JVa02hvZvysUcyMP9UXdGFwncl2WU0bqx+Ysgzd+WAbv8rfNa73QveOxAnAM2w==}
1357 | engines: {node: '>=12'}
1358 | cpu: [x64]
1359 | os: [android]
1360 | requiresBuild: true
1361 | dev: true
1362 | optional: true
1363 |
1364 | /@esbuild/darwin-arm64/0.16.17:
1365 | resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==}
1366 | engines: {node: '>=12'}
1367 | cpu: [arm64]
1368 | os: [darwin]
1369 | requiresBuild: true
1370 | dev: true
1371 | optional: true
1372 |
1373 | /@esbuild/darwin-arm64/0.17.4:
1374 | resolution: {integrity: sha512-tTyJRM9dHvlMPt1KrBFVB5OW1kXOsRNvAPtbzoKazd5RhD5/wKlXk1qR2MpaZRYwf4WDMadt0Pv0GwxB41CVow==}
1375 | engines: {node: '>=12'}
1376 | cpu: [arm64]
1377 | os: [darwin]
1378 | requiresBuild: true
1379 | dev: true
1380 | optional: true
1381 |
1382 | /@esbuild/darwin-x64/0.16.17:
1383 | resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==}
1384 | engines: {node: '>=12'}
1385 | cpu: [x64]
1386 | os: [darwin]
1387 | requiresBuild: true
1388 | dev: true
1389 | optional: true
1390 |
1391 | /@esbuild/darwin-x64/0.17.4:
1392 | resolution: {integrity: sha512-phQuC2Imrb3TjOJwLN8EO50nb2FHe8Ew0OwgZDH1SV6asIPGudnwTQtighDF2EAYlXChLoMJwqjAp4vAaACq6w==}
1393 | engines: {node: '>=12'}
1394 | cpu: [x64]
1395 | os: [darwin]
1396 | requiresBuild: true
1397 | dev: true
1398 | optional: true
1399 |
1400 | /@esbuild/freebsd-arm64/0.16.17:
1401 | resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==}
1402 | engines: {node: '>=12'}
1403 | cpu: [arm64]
1404 | os: [freebsd]
1405 | requiresBuild: true
1406 | dev: true
1407 | optional: true
1408 |
1409 | /@esbuild/freebsd-arm64/0.17.4:
1410 | resolution: {integrity: sha512-oH6JUZkocgmjzzYaP5juERLpJQSwazdjZrTPgLRmAU2bzJ688x0vfMB/WTv4r58RiecdHvXOPC46VtsMy/mepg==}
1411 | engines: {node: '>=12'}
1412 | cpu: [arm64]
1413 | os: [freebsd]
1414 | requiresBuild: true
1415 | dev: true
1416 | optional: true
1417 |
1418 | /@esbuild/freebsd-x64/0.16.17:
1419 | resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==}
1420 | engines: {node: '>=12'}
1421 | cpu: [x64]
1422 | os: [freebsd]
1423 | requiresBuild: true
1424 | dev: true
1425 | optional: true
1426 |
1427 | /@esbuild/freebsd-x64/0.17.4:
1428 | resolution: {integrity: sha512-U4iWGn/9TrAfpAdfd56eO0pRxIgb0a8Wj9jClrhT8hvZnOnS4dfMPW7o4fn15D/KqoiVYHRm43jjBaTt3g/2KA==}
1429 | engines: {node: '>=12'}
1430 | cpu: [x64]
1431 | os: [freebsd]
1432 | requiresBuild: true
1433 | dev: true
1434 | optional: true
1435 |
1436 | /@esbuild/linux-arm/0.16.17:
1437 | resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==}
1438 | engines: {node: '>=12'}
1439 | cpu: [arm]
1440 | os: [linux]
1441 | requiresBuild: true
1442 | dev: true
1443 | optional: true
1444 |
1445 | /@esbuild/linux-arm/0.17.4:
1446 | resolution: {integrity: sha512-S2s9xWTGMTa/fG5EyMGDeL0wrWVgOSQcNddJWgu6rG1NCSXJHs76ZP9AsxjB3f2nZow9fWOyApklIgiTGZKhiw==}
1447 | engines: {node: '>=12'}
1448 | cpu: [arm]
1449 | os: [linux]
1450 | requiresBuild: true
1451 | dev: true
1452 | optional: true
1453 |
1454 | /@esbuild/linux-arm64/0.16.17:
1455 | resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==}
1456 | engines: {node: '>=12'}
1457 | cpu: [arm64]
1458 | os: [linux]
1459 | requiresBuild: true
1460 | dev: true
1461 | optional: true
1462 |
1463 | /@esbuild/linux-arm64/0.17.4:
1464 | resolution: {integrity: sha512-UkGfQvYlwOaeYJzZG4cLV0hCASzQZnKNktRXUo3/BMZvdau40AOz9GzmGA063n1piq6VrFFh43apRDQx8hMP2w==}
1465 | engines: {node: '>=12'}
1466 | cpu: [arm64]
1467 | os: [linux]
1468 | requiresBuild: true
1469 | dev: true
1470 | optional: true
1471 |
1472 | /@esbuild/linux-ia32/0.16.17:
1473 | resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==}
1474 | engines: {node: '>=12'}
1475 | cpu: [ia32]
1476 | os: [linux]
1477 | requiresBuild: true
1478 | dev: true
1479 | optional: true
1480 |
1481 | /@esbuild/linux-ia32/0.17.4:
1482 | resolution: {integrity: sha512-3lqFi4VFo/Vwvn77FZXeLd0ctolIJH/uXkH3yNgEk89Eh6D3XXAC9/iTPEzeEpsNE5IqGIsFa5Z0iPeOh25IyA==}
1483 | engines: {node: '>=12'}
1484 | cpu: [ia32]
1485 | os: [linux]
1486 | requiresBuild: true
1487 | dev: true
1488 | optional: true
1489 |
1490 | /@esbuild/linux-loong64/0.16.17:
1491 | resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
1492 | engines: {node: '>=12'}
1493 | cpu: [loong64]
1494 | os: [linux]
1495 | requiresBuild: true
1496 | dev: true
1497 | optional: true
1498 |
1499 | /@esbuild/linux-loong64/0.17.4:
1500 | resolution: {integrity: sha512-HqpWZkVslDHIwdQ9D+gk7NuAulgQvRxF9no54ut/M55KEb3mi7sQS3GwpPJzSyzzP0UkjQVN7/tbk88/CaX4EQ==}
1501 | engines: {node: '>=12'}
1502 | cpu: [loong64]
1503 | os: [linux]
1504 | requiresBuild: true
1505 | dev: true
1506 | optional: true
1507 |
1508 | /@esbuild/linux-mips64el/0.16.17:
1509 | resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==}
1510 | engines: {node: '>=12'}
1511 | cpu: [mips64el]
1512 | os: [linux]
1513 | requiresBuild: true
1514 | dev: true
1515 | optional: true
1516 |
1517 | /@esbuild/linux-mips64el/0.17.4:
1518 | resolution: {integrity: sha512-d/nMCKKh/SVDbqR9ju+b78vOr0tNXtfBjcp5vfHONCCOAL9ad8gN9dC/u+UnH939pz7wO+0u/x9y1MaZcb/lKA==}
1519 | engines: {node: '>=12'}
1520 | cpu: [mips64el]
1521 | os: [linux]
1522 | requiresBuild: true
1523 | dev: true
1524 | optional: true
1525 |
1526 | /@esbuild/linux-ppc64/0.16.17:
1527 | resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==}
1528 | engines: {node: '>=12'}
1529 | cpu: [ppc64]
1530 | os: [linux]
1531 | requiresBuild: true
1532 | dev: true
1533 | optional: true
1534 |
1535 | /@esbuild/linux-ppc64/0.17.4:
1536 | resolution: {integrity: sha512-lOD9p2dmjZcNiTU+sGe9Nn6G3aYw3k0HBJies1PU0j5IGfp6tdKOQ6mzfACRFCqXjnBuTqK7eTYpwx09O5LLfg==}
1537 | engines: {node: '>=12'}
1538 | cpu: [ppc64]
1539 | os: [linux]
1540 | requiresBuild: true
1541 | dev: true
1542 | optional: true
1543 |
1544 | /@esbuild/linux-riscv64/0.16.17:
1545 | resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==}
1546 | engines: {node: '>=12'}
1547 | cpu: [riscv64]
1548 | os: [linux]
1549 | requiresBuild: true
1550 | dev: true
1551 | optional: true
1552 |
1553 | /@esbuild/linux-riscv64/0.17.4:
1554 | resolution: {integrity: sha512-mTGnwWwVshAjGsd8rP+K6583cPDgxOunsqqldEYij7T5/ysluMHKqUIT4TJHfrDFadUwrghAL6QjER4FeqQXoA==}
1555 | engines: {node: '>=12'}
1556 | cpu: [riscv64]
1557 | os: [linux]
1558 | requiresBuild: true
1559 | dev: true
1560 | optional: true
1561 |
1562 | /@esbuild/linux-s390x/0.16.17:
1563 | resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==}
1564 | engines: {node: '>=12'}
1565 | cpu: [s390x]
1566 | os: [linux]
1567 | requiresBuild: true
1568 | dev: true
1569 | optional: true
1570 |
1571 | /@esbuild/linux-s390x/0.17.4:
1572 | resolution: {integrity: sha512-AQYuUGp50XM29/N/dehADxvc2bUqDcoqrVuijop1Wv72SyxT6dDB9wjUxuPZm2HwIM876UoNNBMVd+iX/UTKVQ==}
1573 | engines: {node: '>=12'}
1574 | cpu: [s390x]
1575 | os: [linux]
1576 | requiresBuild: true
1577 | dev: true
1578 | optional: true
1579 |
1580 | /@esbuild/linux-x64/0.16.17:
1581 | resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==}
1582 | engines: {node: '>=12'}
1583 | cpu: [x64]
1584 | os: [linux]
1585 | requiresBuild: true
1586 | dev: true
1587 | optional: true
1588 |
1589 | /@esbuild/linux-x64/0.17.4:
1590 | resolution: {integrity: sha512-+AsFBwKgQuhV2shfGgA9YloxLDVjXgUEWZum7glR5lLmV94IThu/u2JZGxTgjYby6kyXEx8lKOqP5rTEVBR0Rw==}
1591 | engines: {node: '>=12'}
1592 | cpu: [x64]
1593 | os: [linux]
1594 | requiresBuild: true
1595 | dev: true
1596 | optional: true
1597 |
1598 | /@esbuild/netbsd-x64/0.16.17:
1599 | resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==}
1600 | engines: {node: '>=12'}
1601 | cpu: [x64]
1602 | os: [netbsd]
1603 | requiresBuild: true
1604 | dev: true
1605 | optional: true
1606 |
1607 | /@esbuild/netbsd-x64/0.17.4:
1608 | resolution: {integrity: sha512-zD1TKYX9553OiLS/qkXPMlWoELYkH/VkzRYNKEU+GwFiqkq0SuxsKnsCg5UCdxN3cqd+1KZ8SS3R+WG/Hxy2jQ==}
1609 | engines: {node: '>=12'}
1610 | cpu: [x64]
1611 | os: [netbsd]
1612 | requiresBuild: true
1613 | dev: true
1614 | optional: true
1615 |
1616 | /@esbuild/openbsd-x64/0.16.17:
1617 | resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==}
1618 | engines: {node: '>=12'}
1619 | cpu: [x64]
1620 | os: [openbsd]
1621 | requiresBuild: true
1622 | dev: true
1623 | optional: true
1624 |
1625 | /@esbuild/openbsd-x64/0.17.4:
1626 | resolution: {integrity: sha512-PY1NjEsLRhPEFFg1AV0/4Or/gR+q2dOb9s5rXcPuCjyHRzbt8vnHJl3vYj+641TgWZzTFmSUnZbzs1zwTzjeqw==}
1627 | engines: {node: '>=12'}
1628 | cpu: [x64]
1629 | os: [openbsd]
1630 | requiresBuild: true
1631 | dev: true
1632 | optional: true
1633 |
1634 | /@esbuild/sunos-x64/0.16.17:
1635 | resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==}
1636 | engines: {node: '>=12'}
1637 | cpu: [x64]
1638 | os: [sunos]
1639 | requiresBuild: true
1640 | dev: true
1641 | optional: true
1642 |
1643 | /@esbuild/sunos-x64/0.17.4:
1644 | resolution: {integrity: sha512-B3Z7s8QZQW9tKGleMRXvVmwwLPAUoDCHs4WZ2ElVMWiortLJFowU1NjAhXOKjDgC7o9ByeVcwyOlJ+F2r6ZgmQ==}
1645 | engines: {node: '>=12'}
1646 | cpu: [x64]
1647 | os: [sunos]
1648 | requiresBuild: true
1649 | dev: true
1650 | optional: true
1651 |
1652 | /@esbuild/win32-arm64/0.16.17:
1653 | resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==}
1654 | engines: {node: '>=12'}
1655 | cpu: [arm64]
1656 | os: [win32]
1657 | requiresBuild: true
1658 | dev: true
1659 | optional: true
1660 |
1661 | /@esbuild/win32-arm64/0.17.4:
1662 | resolution: {integrity: sha512-0HCu8R3mY/H5V7N6kdlsJkvrT591bO/oRZy8ztF1dhgNU5xD5tAh5bKByT1UjTGjp/VVBsl1PDQ3L18SfvtnBQ==}
1663 | engines: {node: '>=12'}
1664 | cpu: [arm64]
1665 | os: [win32]
1666 | requiresBuild: true
1667 | dev: true
1668 | optional: true
1669 |
1670 | /@esbuild/win32-ia32/0.16.17:
1671 | resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==}
1672 | engines: {node: '>=12'}
1673 | cpu: [ia32]
1674 | os: [win32]
1675 | requiresBuild: true
1676 | dev: true
1677 | optional: true
1678 |
1679 | /@esbuild/win32-ia32/0.17.4:
1680 | resolution: {integrity: sha512-VUjhVDQycse1gLbe06pC/uaA0M+piQXJpdpNdhg8sPmeIZZqu5xPoGWVCmcsOO2gaM2cywuTYTHkXRozo3/Nkg==}
1681 | engines: {node: '>=12'}
1682 | cpu: [ia32]
1683 | os: [win32]
1684 | requiresBuild: true
1685 | dev: true
1686 | optional: true
1687 |
1688 | /@esbuild/win32-x64/0.16.17:
1689 | resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==}
1690 | engines: {node: '>=12'}
1691 | cpu: [x64]
1692 | os: [win32]
1693 | requiresBuild: true
1694 | dev: true
1695 | optional: true
1696 |
1697 | /@esbuild/win32-x64/0.17.4:
1698 | resolution: {integrity: sha512-0kLAjs+xN5OjhTt/aUA6t48SfENSCKgGPfExADYTOo/UCn0ivxos9/anUVeSfg+L+2O9xkFxvJXIJfG+Q4sYSg==}
1699 | engines: {node: '>=12'}
1700 | cpu: [x64]
1701 | os: [win32]
1702 | requiresBuild: true
1703 | dev: true
1704 | optional: true
1705 |
1706 | /@eslint/eslintrc/1.4.1:
1707 | resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
1708 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1709 | dependencies:
1710 | ajv: 6.12.6
1711 | debug: 4.3.4
1712 | espree: 9.4.1
1713 | globals: 13.19.0
1714 | ignore: 5.2.4
1715 | import-fresh: 3.3.0
1716 | js-yaml: 4.1.0
1717 | minimatch: 3.1.2
1718 | strip-json-comments: 3.1.1
1719 | transitivePeerDependencies:
1720 | - supports-color
1721 | dev: true
1722 |
1723 | /@humanwhocodes/config-array/0.11.8:
1724 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
1725 | engines: {node: '>=10.10.0'}
1726 | dependencies:
1727 | '@humanwhocodes/object-schema': 1.2.1
1728 | debug: 4.3.4
1729 | minimatch: 3.1.2
1730 | transitivePeerDependencies:
1731 | - supports-color
1732 | dev: true
1733 |
1734 | /@humanwhocodes/module-importer/1.0.1:
1735 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
1736 | engines: {node: '>=12.22'}
1737 | dev: true
1738 |
1739 | /@humanwhocodes/object-schema/1.2.1:
1740 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
1741 | dev: true
1742 |
1743 | /@jridgewell/gen-mapping/0.1.1:
1744 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
1745 | engines: {node: '>=6.0.0'}
1746 | dependencies:
1747 | '@jridgewell/set-array': 1.1.2
1748 | '@jridgewell/sourcemap-codec': 1.4.14
1749 | dev: true
1750 |
1751 | /@jridgewell/gen-mapping/0.3.2:
1752 | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
1753 | engines: {node: '>=6.0.0'}
1754 | dependencies:
1755 | '@jridgewell/set-array': 1.1.2
1756 | '@jridgewell/sourcemap-codec': 1.4.14
1757 | '@jridgewell/trace-mapping': 0.3.17
1758 | dev: true
1759 |
1760 | /@jridgewell/resolve-uri/3.1.0:
1761 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
1762 | engines: {node: '>=6.0.0'}
1763 | dev: true
1764 |
1765 | /@jridgewell/set-array/1.1.2:
1766 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
1767 | engines: {node: '>=6.0.0'}
1768 | dev: true
1769 |
1770 | /@jridgewell/source-map/0.3.2:
1771 | resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
1772 | dependencies:
1773 | '@jridgewell/gen-mapping': 0.3.2
1774 | '@jridgewell/trace-mapping': 0.3.17
1775 | dev: true
1776 |
1777 | /@jridgewell/sourcemap-codec/1.4.14:
1778 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
1779 | dev: true
1780 |
1781 | /@jridgewell/trace-mapping/0.3.17:
1782 | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
1783 | dependencies:
1784 | '@jridgewell/resolve-uri': 3.1.0
1785 | '@jridgewell/sourcemap-codec': 1.4.14
1786 | dev: true
1787 |
1788 | /@nodelib/fs.scandir/2.1.5:
1789 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
1790 | engines: {node: '>= 8'}
1791 | dependencies:
1792 | '@nodelib/fs.stat': 2.0.5
1793 | run-parallel: 1.2.0
1794 | dev: true
1795 |
1796 | /@nodelib/fs.stat/2.0.5:
1797 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
1798 | engines: {node: '>= 8'}
1799 | dev: true
1800 |
1801 | /@nodelib/fs.walk/1.2.8:
1802 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
1803 | engines: {node: '>= 8'}
1804 | dependencies:
1805 | '@nodelib/fs.scandir': 2.1.5
1806 | fastq: 1.15.0
1807 | dev: true
1808 |
1809 | /@rollup/plugin-alias/3.1.9_rollup@2.79.1:
1810 | resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==}
1811 | engines: {node: '>=8.0.0'}
1812 | peerDependencies:
1813 | rollup: ^1.20.0||^2.0.0
1814 | dependencies:
1815 | rollup: 2.79.1
1816 | slash: 3.0.0
1817 | dev: true
1818 |
1819 | /@rollup/plugin-babel/5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm:
1820 | resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
1821 | engines: {node: '>= 10.0.0'}
1822 | peerDependencies:
1823 | '@babel/core': ^7.0.0
1824 | '@types/babel__core': ^7.1.9
1825 | rollup: ^1.20.0||^2.0.0
1826 | peerDependenciesMeta:
1827 | '@types/babel__core':
1828 | optional: true
1829 | dependencies:
1830 | '@babel/core': 7.20.12
1831 | '@babel/helper-module-imports': 7.18.6
1832 | '@rollup/pluginutils': 3.1.0_rollup@2.79.1
1833 | rollup: 2.79.1
1834 | dev: true
1835 |
1836 | /@rollup/plugin-commonjs/17.1.0_rollup@2.79.1:
1837 | resolution: {integrity: sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==}
1838 | engines: {node: '>= 8.0.0'}
1839 | peerDependencies:
1840 | rollup: ^2.30.0
1841 | dependencies:
1842 | '@rollup/pluginutils': 3.1.0_rollup@2.79.1
1843 | commondir: 1.0.1
1844 | estree-walker: 2.0.2
1845 | glob: 7.2.3
1846 | is-reference: 1.2.1
1847 | magic-string: 0.25.9
1848 | resolve: 1.22.1
1849 | rollup: 2.79.1
1850 | dev: true
1851 |
1852 | /@rollup/plugin-json/4.1.0_rollup@2.79.1:
1853 | resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==}
1854 | peerDependencies:
1855 | rollup: ^1.20.0 || ^2.0.0
1856 | dependencies:
1857 | '@rollup/pluginutils': 3.1.0_rollup@2.79.1
1858 | rollup: 2.79.1
1859 | dev: true
1860 |
1861 | /@rollup/plugin-node-resolve/11.2.1_rollup@2.79.1:
1862 | resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
1863 | engines: {node: '>= 10.0.0'}
1864 | peerDependencies:
1865 | rollup: ^1.20.0||^2.0.0
1866 | dependencies:
1867 | '@rollup/pluginutils': 3.1.0_rollup@2.79.1
1868 | '@types/resolve': 1.17.1
1869 | builtin-modules: 3.3.0
1870 | deepmerge: 4.3.0
1871 | is-module: 1.0.0
1872 | resolve: 1.22.1
1873 | rollup: 2.79.1
1874 | dev: true
1875 |
1876 | /@rollup/pluginutils/3.1.0_rollup@2.79.1:
1877 | resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
1878 | engines: {node: '>= 8.0.0'}
1879 | peerDependencies:
1880 | rollup: ^1.20.0||^2.0.0
1881 | dependencies:
1882 | '@types/estree': 0.0.39
1883 | estree-walker: 1.0.1
1884 | picomatch: 2.3.1
1885 | rollup: 2.79.1
1886 | dev: true
1887 |
1888 | /@rollup/pluginutils/4.2.1:
1889 | resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
1890 | engines: {node: '>= 8.0.0'}
1891 | dependencies:
1892 | estree-walker: 2.0.2
1893 | picomatch: 2.3.1
1894 | dev: true
1895 |
1896 | /@size-limit/esbuild/8.1.2_size-limit@8.1.2:
1897 | resolution: {integrity: sha512-BQZg+8QDVz4qQK4Iok8bjrAmzUPDTQW5ht6IrqLfeinHZQOn05fkxbcQuGoja0r6xoQ9+bM7b4cnqgCl61dXEw==}
1898 | engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
1899 | peerDependencies:
1900 | size-limit: 8.1.2
1901 | dependencies:
1902 | esbuild: 0.17.4
1903 | nanoid: 3.3.4
1904 | size-limit: 8.1.2
1905 | dev: true
1906 |
1907 | /@size-limit/file/8.1.2_size-limit@8.1.2:
1908 | resolution: {integrity: sha512-cjtGk1GejrmT+ik3LjXpRe+zrS/U15h+Py3L8sYN0XGat0+Y6pPbli1VuRRRcdXZNegpiW+UcxDxPN1AuZC5qA==}
1909 | engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
1910 | peerDependencies:
1911 | size-limit: 8.1.2
1912 | dependencies:
1913 | semver: 7.3.8
1914 | size-limit: 8.1.2
1915 | dev: true
1916 |
1917 | /@size-limit/preset-small-lib/8.1.2_size-limit@8.1.2:
1918 | resolution: {integrity: sha512-KfczbDq+4qFUXVMdNJlIZycp1WY1aqSfHfz4nRZNVaSxBSixrgBYkV6/M+qwP2axNFIXGzIMolqbTCUxvqikyQ==}
1919 | peerDependencies:
1920 | size-limit: 8.1.2
1921 | dependencies:
1922 | '@size-limit/esbuild': 8.1.2_size-limit@8.1.2
1923 | '@size-limit/file': 8.1.2_size-limit@8.1.2
1924 | size-limit: 8.1.2
1925 | dev: true
1926 |
1927 | /@surma/rollup-plugin-off-main-thread/2.2.3:
1928 | resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
1929 | dependencies:
1930 | ejs: 3.1.8
1931 | json5: 2.2.3
1932 | magic-string: 0.25.9
1933 | string.prototype.matchall: 4.0.8
1934 | dev: true
1935 |
1936 | /@trysound/sax/0.2.0:
1937 | resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
1938 | engines: {node: '>=10.13.0'}
1939 | dev: true
1940 |
1941 | /@types/estree/0.0.39:
1942 | resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
1943 | dev: true
1944 |
1945 | /@types/estree/1.0.0:
1946 | resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
1947 | dev: true
1948 |
1949 | /@types/json5/0.0.29:
1950 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
1951 | dev: true
1952 |
1953 | /@types/node/18.11.18:
1954 | resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
1955 | dev: true
1956 |
1957 | /@types/parse-json/4.0.0:
1958 | resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
1959 | dev: true
1960 |
1961 | /@types/resolve/1.17.1:
1962 | resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
1963 | dependencies:
1964 | '@types/node': 18.11.18
1965 | dev: true
1966 |
1967 | /acorn-jsx/5.3.2_acorn@8.8.2:
1968 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1969 | peerDependencies:
1970 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1971 | dependencies:
1972 | acorn: 8.8.2
1973 | dev: true
1974 |
1975 | /acorn/8.8.2:
1976 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
1977 | engines: {node: '>=0.4.0'}
1978 | hasBin: true
1979 | dev: true
1980 |
1981 | /ajv/6.12.6:
1982 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1983 | dependencies:
1984 | fast-deep-equal: 3.1.3
1985 | fast-json-stable-stringify: 2.1.0
1986 | json-schema-traverse: 0.4.1
1987 | uri-js: 4.4.1
1988 | dev: true
1989 |
1990 | /ansi-regex/2.1.1:
1991 | resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
1992 | engines: {node: '>=0.10.0'}
1993 | dev: true
1994 |
1995 | /ansi-regex/5.0.1:
1996 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1997 | engines: {node: '>=8'}
1998 | dev: true
1999 |
2000 | /ansi-styles/2.2.1:
2001 | resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
2002 | engines: {node: '>=0.10.0'}
2003 | dev: true
2004 |
2005 | /ansi-styles/3.2.1:
2006 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
2007 | engines: {node: '>=4'}
2008 | dependencies:
2009 | color-convert: 1.9.3
2010 | dev: true
2011 |
2012 | /ansi-styles/4.3.0:
2013 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
2014 | engines: {node: '>=8'}
2015 | dependencies:
2016 | color-convert: 2.0.1
2017 | dev: true
2018 |
2019 | /anymatch/3.1.3:
2020 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
2021 | engines: {node: '>= 8'}
2022 | dependencies:
2023 | normalize-path: 3.0.0
2024 | picomatch: 2.3.1
2025 | dev: true
2026 |
2027 | /argparse/2.0.1:
2028 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
2029 | dev: true
2030 |
2031 | /array-includes/3.1.6:
2032 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
2033 | engines: {node: '>= 0.4'}
2034 | dependencies:
2035 | call-bind: 1.0.2
2036 | define-properties: 1.1.4
2037 | es-abstract: 1.21.1
2038 | get-intrinsic: 1.2.0
2039 | is-string: 1.0.7
2040 | dev: true
2041 |
2042 | /array-union/2.1.0:
2043 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
2044 | engines: {node: '>=8'}
2045 | dev: true
2046 |
2047 | /array.prototype.flat/1.3.1:
2048 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
2049 | engines: {node: '>= 0.4'}
2050 | dependencies:
2051 | call-bind: 1.0.2
2052 | define-properties: 1.1.4
2053 | es-abstract: 1.21.1
2054 | es-shim-unscopables: 1.0.0
2055 | dev: true
2056 |
2057 | /array.prototype.flatmap/1.3.1:
2058 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
2059 | engines: {node: '>= 0.4'}
2060 | dependencies:
2061 | call-bind: 1.0.2
2062 | define-properties: 1.1.4
2063 | es-abstract: 1.21.1
2064 | es-shim-unscopables: 1.0.0
2065 | dev: true
2066 |
2067 | /array.prototype.tosorted/1.1.1:
2068 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
2069 | dependencies:
2070 | call-bind: 1.0.2
2071 | define-properties: 1.1.4
2072 | es-abstract: 1.21.1
2073 | es-shim-unscopables: 1.0.0
2074 | get-intrinsic: 1.2.0
2075 | dev: true
2076 |
2077 | /async/3.2.4:
2078 | resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
2079 | dev: true
2080 |
2081 | /asyncro/3.0.0:
2082 | resolution: {integrity: sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg==}
2083 | dev: true
2084 |
2085 | /autoprefixer/10.4.13_postcss@8.4.21:
2086 | resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
2087 | engines: {node: ^10 || ^12 || >=14}
2088 | hasBin: true
2089 | peerDependencies:
2090 | postcss: ^8.1.0
2091 | dependencies:
2092 | browserslist: 4.21.5
2093 | caniuse-lite: 1.0.30001449
2094 | fraction.js: 4.2.0
2095 | normalize-range: 0.1.2
2096 | picocolors: 1.0.0
2097 | postcss: 8.4.21
2098 | postcss-value-parser: 4.2.0
2099 | dev: true
2100 |
2101 | /available-typed-arrays/1.0.5:
2102 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
2103 | engines: {node: '>= 0.4'}
2104 | dev: true
2105 |
2106 | /babel-plugin-macros/3.1.0:
2107 | resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
2108 | engines: {node: '>=10', npm: '>=6'}
2109 | dependencies:
2110 | '@babel/runtime': 7.20.13
2111 | cosmiconfig: 7.1.0
2112 | resolve: 1.22.1
2113 | dev: true
2114 |
2115 | /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12:
2116 | resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
2117 | peerDependencies:
2118 | '@babel/core': ^7.0.0-0
2119 | dependencies:
2120 | '@babel/compat-data': 7.20.14
2121 | '@babel/core': 7.20.12
2122 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
2123 | semver: 6.3.0
2124 | transitivePeerDependencies:
2125 | - supports-color
2126 | dev: true
2127 |
2128 | /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12:
2129 | resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
2130 | peerDependencies:
2131 | '@babel/core': ^7.0.0-0
2132 | dependencies:
2133 | '@babel/core': 7.20.12
2134 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
2135 | core-js-compat: 3.27.2
2136 | transitivePeerDependencies:
2137 | - supports-color
2138 | dev: true
2139 |
2140 | /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12:
2141 | resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
2142 | peerDependencies:
2143 | '@babel/core': ^7.0.0-0
2144 | dependencies:
2145 | '@babel/core': 7.20.12
2146 | '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
2147 | transitivePeerDependencies:
2148 | - supports-color
2149 | dev: true
2150 |
2151 | /babel-plugin-transform-async-to-promises/0.8.18:
2152 | resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==}
2153 | dev: true
2154 |
2155 | /babel-plugin-transform-replace-expressions/0.2.0_@babel+core@7.20.12:
2156 | resolution: {integrity: sha512-Eh1rRd9hWEYgkgoA3D0kGp7xJ/wgVshgsqmq60iC4HVWD+Lux+fNHSHBa2v1Hsv+dHflShC71qKhiH40OiPtDA==}
2157 | peerDependencies:
2158 | '@babel/core': ^7.0.0-0
2159 | dependencies:
2160 | '@babel/core': 7.20.12
2161 | '@babel/parser': 7.20.13
2162 | dev: true
2163 |
2164 | /balanced-match/1.0.2:
2165 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
2166 | dev: true
2167 |
2168 | /binary-extensions/2.2.0:
2169 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
2170 | engines: {node: '>=8'}
2171 | dev: true
2172 |
2173 | /boolbase/1.0.0:
2174 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
2175 | dev: true
2176 |
2177 | /brace-expansion/1.1.11:
2178 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
2179 | dependencies:
2180 | balanced-match: 1.0.2
2181 | concat-map: 0.0.1
2182 | dev: true
2183 |
2184 | /brace-expansion/2.0.1:
2185 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
2186 | dependencies:
2187 | balanced-match: 1.0.2
2188 | dev: true
2189 |
2190 | /braces/3.0.2:
2191 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
2192 | engines: {node: '>=8'}
2193 | dependencies:
2194 | fill-range: 7.0.1
2195 | dev: true
2196 |
2197 | /brotli-size/4.0.0:
2198 | resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==}
2199 | engines: {node: '>= 10.16.0'}
2200 | dependencies:
2201 | duplexer: 0.1.1
2202 | dev: true
2203 |
2204 | /browserslist/4.21.5:
2205 | resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
2206 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
2207 | hasBin: true
2208 | dependencies:
2209 | caniuse-lite: 1.0.30001449
2210 | electron-to-chromium: 1.4.284
2211 | node-releases: 2.0.8
2212 | update-browserslist-db: 1.0.10_browserslist@4.21.5
2213 | dev: true
2214 |
2215 | /buffer-from/1.1.2:
2216 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
2217 | dev: true
2218 |
2219 | /builtin-modules/3.3.0:
2220 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
2221 | engines: {node: '>=6'}
2222 | dev: true
2223 |
2224 | /builtins/5.0.1:
2225 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
2226 | dependencies:
2227 | semver: 7.3.8
2228 | dev: true
2229 |
2230 | /bytes-iec/3.1.1:
2231 | resolution: {integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==}
2232 | engines: {node: '>= 0.8'}
2233 | dev: true
2234 |
2235 | /call-bind/1.0.2:
2236 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
2237 | dependencies:
2238 | function-bind: 1.1.1
2239 | get-intrinsic: 1.2.0
2240 | dev: true
2241 |
2242 | /callsites/3.1.0:
2243 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
2244 | engines: {node: '>=6'}
2245 | dev: true
2246 |
2247 | /camelcase/6.3.0:
2248 | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
2249 | engines: {node: '>=10'}
2250 | dev: true
2251 |
2252 | /caniuse-api/3.0.0:
2253 | resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
2254 | dependencies:
2255 | browserslist: 4.21.5
2256 | caniuse-lite: 1.0.30001449
2257 | lodash.memoize: 4.1.2
2258 | lodash.uniq: 4.5.0
2259 | dev: true
2260 |
2261 | /caniuse-lite/1.0.30001449:
2262 | resolution: {integrity: sha512-CPB+UL9XMT/Av+pJxCKGhdx+yg1hzplvFJQlJ2n68PyQGMz9L/E2zCyLdOL8uasbouTUgnPl+y0tccI/se+BEw==}
2263 | dev: true
2264 |
2265 | /chalk/1.1.3:
2266 | resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
2267 | engines: {node: '>=0.10.0'}
2268 | dependencies:
2269 | ansi-styles: 2.2.1
2270 | escape-string-regexp: 1.0.5
2271 | has-ansi: 2.0.0
2272 | strip-ansi: 3.0.1
2273 | supports-color: 2.0.0
2274 | dev: true
2275 |
2276 | /chalk/2.4.2:
2277 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
2278 | engines: {node: '>=4'}
2279 | dependencies:
2280 | ansi-styles: 3.2.1
2281 | escape-string-regexp: 1.0.5
2282 | supports-color: 5.5.0
2283 | dev: true
2284 |
2285 | /chalk/4.1.2:
2286 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
2287 | engines: {node: '>=10'}
2288 | dependencies:
2289 | ansi-styles: 4.3.0
2290 | supports-color: 7.2.0
2291 | dev: true
2292 |
2293 | /chokidar/3.5.3:
2294 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
2295 | engines: {node: '>= 8.10.0'}
2296 | dependencies:
2297 | anymatch: 3.1.3
2298 | braces: 3.0.2
2299 | glob-parent: 5.1.2
2300 | is-binary-path: 2.1.0
2301 | is-glob: 4.0.3
2302 | normalize-path: 3.0.0
2303 | readdirp: 3.6.0
2304 | optionalDependencies:
2305 | fsevents: 2.3.2
2306 | dev: true
2307 |
2308 | /cliui/8.0.1:
2309 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
2310 | engines: {node: '>=12'}
2311 | dependencies:
2312 | string-width: 4.2.3
2313 | strip-ansi: 6.0.1
2314 | wrap-ansi: 7.0.0
2315 | dev: true
2316 |
2317 | /color-convert/1.9.3:
2318 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
2319 | dependencies:
2320 | color-name: 1.1.3
2321 | dev: true
2322 |
2323 | /color-convert/2.0.1:
2324 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
2325 | engines: {node: '>=7.0.0'}
2326 | dependencies:
2327 | color-name: 1.1.4
2328 | dev: true
2329 |
2330 | /color-name/1.1.3:
2331 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
2332 | dev: true
2333 |
2334 | /color-name/1.1.4:
2335 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
2336 | dev: true
2337 |
2338 | /colord/2.9.3:
2339 | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
2340 | dev: true
2341 |
2342 | /commander/2.20.3:
2343 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
2344 | dev: true
2345 |
2346 | /commander/7.2.0:
2347 | resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
2348 | engines: {node: '>= 10'}
2349 | dev: true
2350 |
2351 | /commondir/1.0.1:
2352 | resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
2353 | dev: true
2354 |
2355 | /concat-map/0.0.1:
2356 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
2357 | dev: true
2358 |
2359 | /concat-with-sourcemaps/1.1.0:
2360 | resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==}
2361 | dependencies:
2362 | source-map: 0.6.1
2363 | dev: true
2364 |
2365 | /convert-source-map/1.9.0:
2366 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
2367 | dev: true
2368 |
2369 | /core-js-compat/3.27.2:
2370 | resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==}
2371 | dependencies:
2372 | browserslist: 4.21.5
2373 | dev: true
2374 |
2375 | /cosmiconfig/7.1.0:
2376 | resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
2377 | engines: {node: '>=10'}
2378 | dependencies:
2379 | '@types/parse-json': 4.0.0
2380 | import-fresh: 3.3.0
2381 | parse-json: 5.2.0
2382 | path-type: 4.0.0
2383 | yaml: 1.10.2
2384 | dev: true
2385 |
2386 | /cross-spawn/6.0.5:
2387 | resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
2388 | engines: {node: '>=4.8'}
2389 | dependencies:
2390 | nice-try: 1.0.5
2391 | path-key: 2.0.1
2392 | semver: 5.7.1
2393 | shebang-command: 1.2.0
2394 | which: 1.3.1
2395 | dev: true
2396 |
2397 | /cross-spawn/7.0.3:
2398 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
2399 | engines: {node: '>= 8'}
2400 | dependencies:
2401 | path-key: 3.1.1
2402 | shebang-command: 2.0.0
2403 | which: 2.0.2
2404 | dev: true
2405 |
2406 | /css-declaration-sorter/6.3.1_postcss@8.4.21:
2407 | resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
2408 | engines: {node: ^10 || ^12 || >=14}
2409 | peerDependencies:
2410 | postcss: ^8.0.9
2411 | dependencies:
2412 | postcss: 8.4.21
2413 | dev: true
2414 |
2415 | /css-select/4.3.0:
2416 | resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
2417 | dependencies:
2418 | boolbase: 1.0.0
2419 | css-what: 6.1.0
2420 | domhandler: 4.3.1
2421 | domutils: 2.8.0
2422 | nth-check: 2.1.1
2423 | dev: true
2424 |
2425 | /css-tree/1.1.3:
2426 | resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
2427 | engines: {node: '>=8.0.0'}
2428 | dependencies:
2429 | mdn-data: 2.0.14
2430 | source-map: 0.6.1
2431 | dev: true
2432 |
2433 | /css-what/6.1.0:
2434 | resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
2435 | engines: {node: '>= 6'}
2436 | dev: true
2437 |
2438 | /cssesc/3.0.0:
2439 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
2440 | engines: {node: '>=4'}
2441 | hasBin: true
2442 | dev: true
2443 |
2444 | /cssnano-preset-default/5.2.13_postcss@8.4.21:
2445 | resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==}
2446 | engines: {node: ^10 || ^12 || >=14.0}
2447 | peerDependencies:
2448 | postcss: ^8.2.15
2449 | dependencies:
2450 | css-declaration-sorter: 6.3.1_postcss@8.4.21
2451 | cssnano-utils: 3.1.0_postcss@8.4.21
2452 | postcss: 8.4.21
2453 | postcss-calc: 8.2.4_postcss@8.4.21
2454 | postcss-colormin: 5.3.0_postcss@8.4.21
2455 | postcss-convert-values: 5.1.3_postcss@8.4.21
2456 | postcss-discard-comments: 5.1.2_postcss@8.4.21
2457 | postcss-discard-duplicates: 5.1.0_postcss@8.4.21
2458 | postcss-discard-empty: 5.1.1_postcss@8.4.21
2459 | postcss-discard-overridden: 5.1.0_postcss@8.4.21
2460 | postcss-merge-longhand: 5.1.7_postcss@8.4.21
2461 | postcss-merge-rules: 5.1.3_postcss@8.4.21
2462 | postcss-minify-font-values: 5.1.0_postcss@8.4.21
2463 | postcss-minify-gradients: 5.1.1_postcss@8.4.21
2464 | postcss-minify-params: 5.1.4_postcss@8.4.21
2465 | postcss-minify-selectors: 5.2.1_postcss@8.4.21
2466 | postcss-normalize-charset: 5.1.0_postcss@8.4.21
2467 | postcss-normalize-display-values: 5.1.0_postcss@8.4.21
2468 | postcss-normalize-positions: 5.1.1_postcss@8.4.21
2469 | postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21
2470 | postcss-normalize-string: 5.1.0_postcss@8.4.21
2471 | postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21
2472 | postcss-normalize-unicode: 5.1.1_postcss@8.4.21
2473 | postcss-normalize-url: 5.1.0_postcss@8.4.21
2474 | postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
2475 | postcss-ordered-values: 5.1.3_postcss@8.4.21
2476 | postcss-reduce-initial: 5.1.1_postcss@8.4.21
2477 | postcss-reduce-transforms: 5.1.0_postcss@8.4.21
2478 | postcss-svgo: 5.1.0_postcss@8.4.21
2479 | postcss-unique-selectors: 5.1.1_postcss@8.4.21
2480 | dev: true
2481 |
2482 | /cssnano-utils/3.1.0_postcss@8.4.21:
2483 | resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
2484 | engines: {node: ^10 || ^12 || >=14.0}
2485 | peerDependencies:
2486 | postcss: ^8.2.15
2487 | dependencies:
2488 | postcss: 8.4.21
2489 | dev: true
2490 |
2491 | /cssnano/5.1.14_postcss@8.4.21:
2492 | resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==}
2493 | engines: {node: ^10 || ^12 || >=14.0}
2494 | peerDependencies:
2495 | postcss: ^8.2.15
2496 | dependencies:
2497 | cssnano-preset-default: 5.2.13_postcss@8.4.21
2498 | lilconfig: 2.0.6
2499 | postcss: 8.4.21
2500 | yaml: 1.10.2
2501 | dev: true
2502 |
2503 | /csso/4.2.0:
2504 | resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
2505 | engines: {node: '>=8.0.0'}
2506 | dependencies:
2507 | css-tree: 1.1.3
2508 | dev: true
2509 |
2510 | /debug/3.2.7:
2511 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
2512 | peerDependencies:
2513 | supports-color: '*'
2514 | peerDependenciesMeta:
2515 | supports-color:
2516 | optional: true
2517 | dependencies:
2518 | ms: 2.1.2
2519 | dev: true
2520 |
2521 | /debug/4.3.4:
2522 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
2523 | engines: {node: '>=6.0'}
2524 | peerDependencies:
2525 | supports-color: '*'
2526 | peerDependenciesMeta:
2527 | supports-color:
2528 | optional: true
2529 | dependencies:
2530 | ms: 2.1.2
2531 | dev: true
2532 |
2533 | /deep-is/0.1.4:
2534 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
2535 | dev: true
2536 |
2537 | /deepmerge/4.3.0:
2538 | resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
2539 | engines: {node: '>=0.10.0'}
2540 | dev: true
2541 |
2542 | /define-lazy-prop/2.0.0:
2543 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
2544 | engines: {node: '>=8'}
2545 | dev: true
2546 |
2547 | /define-properties/1.1.4:
2548 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
2549 | engines: {node: '>= 0.4'}
2550 | dependencies:
2551 | has-property-descriptors: 1.0.0
2552 | object-keys: 1.1.1
2553 | dev: true
2554 |
2555 | /dir-glob/3.0.1:
2556 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
2557 | engines: {node: '>=8'}
2558 | dependencies:
2559 | path-type: 4.0.0
2560 | dev: true
2561 |
2562 | /doctrine/2.1.0:
2563 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
2564 | engines: {node: '>=0.10.0'}
2565 | dependencies:
2566 | esutils: 2.0.3
2567 | dev: true
2568 |
2569 | /doctrine/3.0.0:
2570 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
2571 | engines: {node: '>=6.0.0'}
2572 | dependencies:
2573 | esutils: 2.0.3
2574 | dev: true
2575 |
2576 | /dom-serializer/1.4.1:
2577 | resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
2578 | dependencies:
2579 | domelementtype: 2.3.0
2580 | domhandler: 4.3.1
2581 | entities: 2.2.0
2582 | dev: true
2583 |
2584 | /domelementtype/2.3.0:
2585 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
2586 | dev: true
2587 |
2588 | /domhandler/4.3.1:
2589 | resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
2590 | engines: {node: '>= 4'}
2591 | dependencies:
2592 | domelementtype: 2.3.0
2593 | dev: true
2594 |
2595 | /domutils/2.8.0:
2596 | resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
2597 | dependencies:
2598 | dom-serializer: 1.4.1
2599 | domelementtype: 2.3.0
2600 | domhandler: 4.3.1
2601 | dev: true
2602 |
2603 | /duplexer/0.1.1:
2604 | resolution: {integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==}
2605 | dev: true
2606 |
2607 | /duplexer/0.1.2:
2608 | resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
2609 | dev: true
2610 |
2611 | /ejs/3.1.8:
2612 | resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==}
2613 | engines: {node: '>=0.10.0'}
2614 | hasBin: true
2615 | dependencies:
2616 | jake: 10.8.5
2617 | dev: true
2618 |
2619 | /electron-to-chromium/1.4.284:
2620 | resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
2621 | dev: true
2622 |
2623 | /emoji-regex/8.0.0:
2624 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
2625 | dev: true
2626 |
2627 | /entities/2.2.0:
2628 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
2629 | dev: true
2630 |
2631 | /error-ex/1.3.2:
2632 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
2633 | dependencies:
2634 | is-arrayish: 0.2.1
2635 | dev: true
2636 |
2637 | /es-abstract/1.21.1:
2638 | resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
2639 | engines: {node: '>= 0.4'}
2640 | dependencies:
2641 | available-typed-arrays: 1.0.5
2642 | call-bind: 1.0.2
2643 | es-set-tostringtag: 2.0.1
2644 | es-to-primitive: 1.2.1
2645 | function-bind: 1.1.1
2646 | function.prototype.name: 1.1.5
2647 | get-intrinsic: 1.2.0
2648 | get-symbol-description: 1.0.0
2649 | globalthis: 1.0.3
2650 | gopd: 1.0.1
2651 | has: 1.0.3
2652 | has-property-descriptors: 1.0.0
2653 | has-proto: 1.0.1
2654 | has-symbols: 1.0.3
2655 | internal-slot: 1.0.4
2656 | is-array-buffer: 3.0.1
2657 | is-callable: 1.2.7
2658 | is-negative-zero: 2.0.2
2659 | is-regex: 1.1.4
2660 | is-shared-array-buffer: 1.0.2
2661 | is-string: 1.0.7
2662 | is-typed-array: 1.1.10
2663 | is-weakref: 1.0.2
2664 | object-inspect: 1.12.3
2665 | object-keys: 1.1.1
2666 | object.assign: 4.1.4
2667 | regexp.prototype.flags: 1.4.3
2668 | safe-regex-test: 1.0.0
2669 | string.prototype.trimend: 1.0.6
2670 | string.prototype.trimstart: 1.0.6
2671 | typed-array-length: 1.0.4
2672 | unbox-primitive: 1.0.2
2673 | which-typed-array: 1.1.9
2674 | dev: true
2675 |
2676 | /es-set-tostringtag/2.0.1:
2677 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
2678 | engines: {node: '>= 0.4'}
2679 | dependencies:
2680 | get-intrinsic: 1.2.0
2681 | has: 1.0.3
2682 | has-tostringtag: 1.0.0
2683 | dev: true
2684 |
2685 | /es-shim-unscopables/1.0.0:
2686 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
2687 | dependencies:
2688 | has: 1.0.3
2689 | dev: true
2690 |
2691 | /es-to-primitive/1.2.1:
2692 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
2693 | engines: {node: '>= 0.4'}
2694 | dependencies:
2695 | is-callable: 1.2.7
2696 | is-date-object: 1.0.5
2697 | is-symbol: 1.0.4
2698 | dev: true
2699 |
2700 | /esbuild/0.16.17:
2701 | resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==}
2702 | engines: {node: '>=12'}
2703 | hasBin: true
2704 | requiresBuild: true
2705 | optionalDependencies:
2706 | '@esbuild/android-arm': 0.16.17
2707 | '@esbuild/android-arm64': 0.16.17
2708 | '@esbuild/android-x64': 0.16.17
2709 | '@esbuild/darwin-arm64': 0.16.17
2710 | '@esbuild/darwin-x64': 0.16.17
2711 | '@esbuild/freebsd-arm64': 0.16.17
2712 | '@esbuild/freebsd-x64': 0.16.17
2713 | '@esbuild/linux-arm': 0.16.17
2714 | '@esbuild/linux-arm64': 0.16.17
2715 | '@esbuild/linux-ia32': 0.16.17
2716 | '@esbuild/linux-loong64': 0.16.17
2717 | '@esbuild/linux-mips64el': 0.16.17
2718 | '@esbuild/linux-ppc64': 0.16.17
2719 | '@esbuild/linux-riscv64': 0.16.17
2720 | '@esbuild/linux-s390x': 0.16.17
2721 | '@esbuild/linux-x64': 0.16.17
2722 | '@esbuild/netbsd-x64': 0.16.17
2723 | '@esbuild/openbsd-x64': 0.16.17
2724 | '@esbuild/sunos-x64': 0.16.17
2725 | '@esbuild/win32-arm64': 0.16.17
2726 | '@esbuild/win32-ia32': 0.16.17
2727 | '@esbuild/win32-x64': 0.16.17
2728 | dev: true
2729 |
2730 | /esbuild/0.17.4:
2731 | resolution: {integrity: sha512-zBn9MeCwT7W5F1a3lXClD61ip6vQM+H8Msb0w8zMT4ZKBpDg+rFAraNyWCDelB/2L6M3g6AXHPnsyvjMFnxtFw==}
2732 | engines: {node: '>=12'}
2733 | hasBin: true
2734 | requiresBuild: true
2735 | optionalDependencies:
2736 | '@esbuild/android-arm': 0.17.4
2737 | '@esbuild/android-arm64': 0.17.4
2738 | '@esbuild/android-x64': 0.17.4
2739 | '@esbuild/darwin-arm64': 0.17.4
2740 | '@esbuild/darwin-x64': 0.17.4
2741 | '@esbuild/freebsd-arm64': 0.17.4
2742 | '@esbuild/freebsd-x64': 0.17.4
2743 | '@esbuild/linux-arm': 0.17.4
2744 | '@esbuild/linux-arm64': 0.17.4
2745 | '@esbuild/linux-ia32': 0.17.4
2746 | '@esbuild/linux-loong64': 0.17.4
2747 | '@esbuild/linux-mips64el': 0.17.4
2748 | '@esbuild/linux-ppc64': 0.17.4
2749 | '@esbuild/linux-riscv64': 0.17.4
2750 | '@esbuild/linux-s390x': 0.17.4
2751 | '@esbuild/linux-x64': 0.17.4
2752 | '@esbuild/netbsd-x64': 0.17.4
2753 | '@esbuild/openbsd-x64': 0.17.4
2754 | '@esbuild/sunos-x64': 0.17.4
2755 | '@esbuild/win32-arm64': 0.17.4
2756 | '@esbuild/win32-ia32': 0.17.4
2757 | '@esbuild/win32-x64': 0.17.4
2758 | dev: true
2759 |
2760 | /escalade/3.1.1:
2761 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
2762 | engines: {node: '>=6'}
2763 | dev: true
2764 |
2765 | /escape-string-regexp/1.0.5:
2766 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
2767 | engines: {node: '>=0.8.0'}
2768 | dev: true
2769 |
2770 | /escape-string-regexp/4.0.0:
2771 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
2772 | engines: {node: '>=10'}
2773 | dev: true
2774 |
2775 | /eslint-config-prettier/8.6.0_eslint@8.33.0:
2776 | resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==}
2777 | hasBin: true
2778 | peerDependencies:
2779 | eslint: '>=7.0.0'
2780 | dependencies:
2781 | eslint: 8.33.0
2782 | dev: true
2783 |
2784 | /eslint-config-standard/17.0.0_xh3wrndcszbt2l7hdksdjqnjcq:
2785 | resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
2786 | peerDependencies:
2787 | eslint: ^8.0.1
2788 | eslint-plugin-import: ^2.25.2
2789 | eslint-plugin-n: ^15.0.0
2790 | eslint-plugin-promise: ^6.0.0
2791 | dependencies:
2792 | eslint: 8.33.0
2793 | eslint-plugin-import: 2.27.5_eslint@8.33.0
2794 | eslint-plugin-n: 15.6.1_eslint@8.33.0
2795 | eslint-plugin-promise: 6.1.1_eslint@8.33.0
2796 | dev: true
2797 |
2798 | /eslint-import-resolver-node/0.3.7:
2799 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
2800 | dependencies:
2801 | debug: 3.2.7
2802 | is-core-module: 2.11.0
2803 | resolve: 1.22.1
2804 | transitivePeerDependencies:
2805 | - supports-color
2806 | dev: true
2807 |
2808 | /eslint-module-utils/2.7.4_b5qyyy7jj6vxczv7eweintx4wu:
2809 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
2810 | engines: {node: '>=4'}
2811 | peerDependencies:
2812 | '@typescript-eslint/parser': '*'
2813 | eslint: '*'
2814 | eslint-import-resolver-node: '*'
2815 | eslint-import-resolver-typescript: '*'
2816 | eslint-import-resolver-webpack: '*'
2817 | peerDependenciesMeta:
2818 | '@typescript-eslint/parser':
2819 | optional: true
2820 | eslint:
2821 | optional: true
2822 | eslint-import-resolver-node:
2823 | optional: true
2824 | eslint-import-resolver-typescript:
2825 | optional: true
2826 | eslint-import-resolver-webpack:
2827 | optional: true
2828 | dependencies:
2829 | debug: 3.2.7
2830 | eslint: 8.33.0
2831 | eslint-import-resolver-node: 0.3.7
2832 | transitivePeerDependencies:
2833 | - supports-color
2834 | dev: true
2835 |
2836 | /eslint-plugin-es/4.1.0_eslint@8.33.0:
2837 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
2838 | engines: {node: '>=8.10.0'}
2839 | peerDependencies:
2840 | eslint: '>=4.19.1'
2841 | dependencies:
2842 | eslint: 8.33.0
2843 | eslint-utils: 2.1.0
2844 | regexpp: 3.2.0
2845 | dev: true
2846 |
2847 | /eslint-plugin-import/2.27.5_eslint@8.33.0:
2848 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
2849 | engines: {node: '>=4'}
2850 | peerDependencies:
2851 | '@typescript-eslint/parser': '*'
2852 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
2853 | peerDependenciesMeta:
2854 | '@typescript-eslint/parser':
2855 | optional: true
2856 | dependencies:
2857 | array-includes: 3.1.6
2858 | array.prototype.flat: 1.3.1
2859 | array.prototype.flatmap: 1.3.1
2860 | debug: 3.2.7
2861 | doctrine: 2.1.0
2862 | eslint: 8.33.0
2863 | eslint-import-resolver-node: 0.3.7
2864 | eslint-module-utils: 2.7.4_b5qyyy7jj6vxczv7eweintx4wu
2865 | has: 1.0.3
2866 | is-core-module: 2.11.0
2867 | is-glob: 4.0.3
2868 | minimatch: 3.1.2
2869 | object.values: 1.1.6
2870 | resolve: 1.22.1
2871 | semver: 6.3.0
2872 | tsconfig-paths: 3.14.1
2873 | transitivePeerDependencies:
2874 | - eslint-import-resolver-typescript
2875 | - eslint-import-resolver-webpack
2876 | - supports-color
2877 | dev: true
2878 |
2879 | /eslint-plugin-n/15.6.1_eslint@8.33.0:
2880 | resolution: {integrity: sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==}
2881 | engines: {node: '>=12.22.0'}
2882 | peerDependencies:
2883 | eslint: '>=7.0.0'
2884 | dependencies:
2885 | builtins: 5.0.1
2886 | eslint: 8.33.0
2887 | eslint-plugin-es: 4.1.0_eslint@8.33.0
2888 | eslint-utils: 3.0.0_eslint@8.33.0
2889 | ignore: 5.2.4
2890 | is-core-module: 2.11.0
2891 | minimatch: 3.1.2
2892 | resolve: 1.22.1
2893 | semver: 7.3.8
2894 | dev: true
2895 |
2896 | /eslint-plugin-promise/6.1.1_eslint@8.33.0:
2897 | resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
2898 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
2899 | peerDependencies:
2900 | eslint: ^7.0.0 || ^8.0.0
2901 | dependencies:
2902 | eslint: 8.33.0
2903 | dev: true
2904 |
2905 | /eslint-plugin-react-hooks/4.6.0_eslint@8.33.0:
2906 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
2907 | engines: {node: '>=10'}
2908 | peerDependencies:
2909 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
2910 | dependencies:
2911 | eslint: 8.33.0
2912 | dev: true
2913 |
2914 | /eslint-plugin-react/7.32.2_eslint@8.33.0:
2915 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
2916 | engines: {node: '>=4'}
2917 | peerDependencies:
2918 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
2919 | dependencies:
2920 | array-includes: 3.1.6
2921 | array.prototype.flatmap: 1.3.1
2922 | array.prototype.tosorted: 1.1.1
2923 | doctrine: 2.1.0
2924 | eslint: 8.33.0
2925 | estraverse: 5.3.0
2926 | jsx-ast-utils: 3.3.3
2927 | minimatch: 3.1.2
2928 | object.entries: 1.1.6
2929 | object.fromentries: 2.0.6
2930 | object.hasown: 1.1.2
2931 | object.values: 1.1.6
2932 | prop-types: 15.8.1
2933 | resolve: 2.0.0-next.4
2934 | semver: 6.3.0
2935 | string.prototype.matchall: 4.0.8
2936 | dev: true
2937 |
2938 | /eslint-scope/7.1.1:
2939 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
2940 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
2941 | dependencies:
2942 | esrecurse: 4.3.0
2943 | estraverse: 5.3.0
2944 | dev: true
2945 |
2946 | /eslint-utils/2.1.0:
2947 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
2948 | engines: {node: '>=6'}
2949 | dependencies:
2950 | eslint-visitor-keys: 1.3.0
2951 | dev: true
2952 |
2953 | /eslint-utils/3.0.0_eslint@8.33.0:
2954 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
2955 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
2956 | peerDependencies:
2957 | eslint: '>=5'
2958 | dependencies:
2959 | eslint: 8.33.0
2960 | eslint-visitor-keys: 2.1.0
2961 | dev: true
2962 |
2963 | /eslint-visitor-keys/1.3.0:
2964 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
2965 | engines: {node: '>=4'}
2966 | dev: true
2967 |
2968 | /eslint-visitor-keys/2.1.0:
2969 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
2970 | engines: {node: '>=10'}
2971 | dev: true
2972 |
2973 | /eslint-visitor-keys/3.3.0:
2974 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
2975 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
2976 | dev: true
2977 |
2978 | /eslint/8.33.0:
2979 | resolution: {integrity: sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==}
2980 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
2981 | hasBin: true
2982 | dependencies:
2983 | '@eslint/eslintrc': 1.4.1
2984 | '@humanwhocodes/config-array': 0.11.8
2985 | '@humanwhocodes/module-importer': 1.0.1
2986 | '@nodelib/fs.walk': 1.2.8
2987 | ajv: 6.12.6
2988 | chalk: 4.1.2
2989 | cross-spawn: 7.0.3
2990 | debug: 4.3.4
2991 | doctrine: 3.0.0
2992 | escape-string-regexp: 4.0.0
2993 | eslint-scope: 7.1.1
2994 | eslint-utils: 3.0.0_eslint@8.33.0
2995 | eslint-visitor-keys: 3.3.0
2996 | espree: 9.4.1
2997 | esquery: 1.4.0
2998 | esutils: 2.0.3
2999 | fast-deep-equal: 3.1.3
3000 | file-entry-cache: 6.0.1
3001 | find-up: 5.0.0
3002 | glob-parent: 6.0.2
3003 | globals: 13.19.0
3004 | grapheme-splitter: 1.0.4
3005 | ignore: 5.2.4
3006 | import-fresh: 3.3.0
3007 | imurmurhash: 0.1.4
3008 | is-glob: 4.0.3
3009 | is-path-inside: 3.0.3
3010 | js-sdsl: 4.3.0
3011 | js-yaml: 4.1.0
3012 | json-stable-stringify-without-jsonify: 1.0.1
3013 | levn: 0.4.1
3014 | lodash.merge: 4.6.2
3015 | minimatch: 3.1.2
3016 | natural-compare: 1.4.0
3017 | optionator: 0.9.1
3018 | regexpp: 3.2.0
3019 | strip-ansi: 6.0.1
3020 | strip-json-comments: 3.1.1
3021 | text-table: 0.2.0
3022 | transitivePeerDependencies:
3023 | - supports-color
3024 | dev: true
3025 |
3026 | /espree/9.4.1:
3027 | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
3028 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3029 | dependencies:
3030 | acorn: 8.8.2
3031 | acorn-jsx: 5.3.2_acorn@8.8.2
3032 | eslint-visitor-keys: 3.3.0
3033 | dev: true
3034 |
3035 | /esquery/1.4.0:
3036 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
3037 | engines: {node: '>=0.10'}
3038 | dependencies:
3039 | estraverse: 5.3.0
3040 | dev: true
3041 |
3042 | /esrecurse/4.3.0:
3043 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
3044 | engines: {node: '>=4.0'}
3045 | dependencies:
3046 | estraverse: 5.3.0
3047 | dev: true
3048 |
3049 | /estraverse/5.3.0:
3050 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
3051 | engines: {node: '>=4.0'}
3052 | dev: true
3053 |
3054 | /estree-walker/0.6.1:
3055 | resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
3056 | dev: true
3057 |
3058 | /estree-walker/1.0.1:
3059 | resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
3060 | dev: true
3061 |
3062 | /estree-walker/2.0.2:
3063 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
3064 | dev: true
3065 |
3066 | /esutils/2.0.3:
3067 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
3068 | engines: {node: '>=0.10.0'}
3069 | dev: true
3070 |
3071 | /eventemitter3/4.0.7:
3072 | resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
3073 | dev: true
3074 |
3075 | /fast-deep-equal/3.1.3:
3076 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
3077 | dev: true
3078 |
3079 | /fast-glob/3.2.12:
3080 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
3081 | engines: {node: '>=8.6.0'}
3082 | dependencies:
3083 | '@nodelib/fs.stat': 2.0.5
3084 | '@nodelib/fs.walk': 1.2.8
3085 | glob-parent: 5.1.2
3086 | merge2: 1.4.1
3087 | micromatch: 4.0.5
3088 | dev: true
3089 |
3090 | /fast-json-stable-stringify/2.1.0:
3091 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
3092 | dev: true
3093 |
3094 | /fast-levenshtein/2.0.6:
3095 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
3096 | dev: true
3097 |
3098 | /fastq/1.15.0:
3099 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
3100 | dependencies:
3101 | reusify: 1.0.4
3102 | dev: true
3103 |
3104 | /figures/1.7.0:
3105 | resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==}
3106 | engines: {node: '>=0.10.0'}
3107 | dependencies:
3108 | escape-string-regexp: 1.0.5
3109 | object-assign: 4.1.1
3110 | dev: true
3111 |
3112 | /file-entry-cache/6.0.1:
3113 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
3114 | engines: {node: ^10.12.0 || >=12.0.0}
3115 | dependencies:
3116 | flat-cache: 3.0.4
3117 | dev: true
3118 |
3119 | /filelist/1.0.4:
3120 | resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
3121 | dependencies:
3122 | minimatch: 5.1.6
3123 | dev: true
3124 |
3125 | /filesize/6.4.0:
3126 | resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==}
3127 | engines: {node: '>= 0.4.0'}
3128 | dev: true
3129 |
3130 | /fill-range/7.0.1:
3131 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
3132 | engines: {node: '>=8'}
3133 | dependencies:
3134 | to-regex-range: 5.0.1
3135 | dev: true
3136 |
3137 | /find-cache-dir/3.3.2:
3138 | resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
3139 | engines: {node: '>=8'}
3140 | dependencies:
3141 | commondir: 1.0.1
3142 | make-dir: 3.1.0
3143 | pkg-dir: 4.2.0
3144 | dev: true
3145 |
3146 | /find-up/4.1.0:
3147 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
3148 | engines: {node: '>=8'}
3149 | dependencies:
3150 | locate-path: 5.0.0
3151 | path-exists: 4.0.0
3152 | dev: true
3153 |
3154 | /find-up/5.0.0:
3155 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
3156 | engines: {node: '>=10'}
3157 | dependencies:
3158 | locate-path: 6.0.0
3159 | path-exists: 4.0.0
3160 | dev: true
3161 |
3162 | /flat-cache/3.0.4:
3163 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
3164 | engines: {node: ^10.12.0 || >=12.0.0}
3165 | dependencies:
3166 | flatted: 3.2.7
3167 | rimraf: 3.0.2
3168 | dev: true
3169 |
3170 | /flatted/3.2.7:
3171 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
3172 | dev: true
3173 |
3174 | /for-each/0.3.3:
3175 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
3176 | dependencies:
3177 | is-callable: 1.2.7
3178 | dev: true
3179 |
3180 | /fraction.js/4.2.0:
3181 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
3182 | dev: true
3183 |
3184 | /fs-extra/10.1.0:
3185 | resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
3186 | engines: {node: '>=12'}
3187 | dependencies:
3188 | graceful-fs: 4.2.10
3189 | jsonfile: 6.1.0
3190 | universalify: 2.0.0
3191 | dev: true
3192 |
3193 | /fs.realpath/1.0.0:
3194 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
3195 | dev: true
3196 |
3197 | /fsevents/2.3.2:
3198 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
3199 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
3200 | os: [darwin]
3201 | requiresBuild: true
3202 | dev: true
3203 | optional: true
3204 |
3205 | /function-bind/1.1.1:
3206 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
3207 | dev: true
3208 |
3209 | /function.prototype.name/1.1.5:
3210 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
3211 | engines: {node: '>= 0.4'}
3212 | dependencies:
3213 | call-bind: 1.0.2
3214 | define-properties: 1.1.4
3215 | es-abstract: 1.21.1
3216 | functions-have-names: 1.2.3
3217 | dev: true
3218 |
3219 | /functions-have-names/1.2.3:
3220 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
3221 | dev: true
3222 |
3223 | /generic-names/4.0.0:
3224 | resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==}
3225 | dependencies:
3226 | loader-utils: 3.2.1
3227 | dev: true
3228 |
3229 | /gensync/1.0.0-beta.2:
3230 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
3231 | engines: {node: '>=6.9.0'}
3232 | dev: true
3233 |
3234 | /get-caller-file/2.0.5:
3235 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
3236 | engines: {node: 6.* || 8.* || >= 10.*}
3237 | dev: true
3238 |
3239 | /get-intrinsic/1.2.0:
3240 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
3241 | dependencies:
3242 | function-bind: 1.1.1
3243 | has: 1.0.3
3244 | has-symbols: 1.0.3
3245 | dev: true
3246 |
3247 | /get-symbol-description/1.0.0:
3248 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
3249 | engines: {node: '>= 0.4'}
3250 | dependencies:
3251 | call-bind: 1.0.2
3252 | get-intrinsic: 1.2.0
3253 | dev: true
3254 |
3255 | /glob-parent/5.1.2:
3256 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
3257 | engines: {node: '>= 6'}
3258 | dependencies:
3259 | is-glob: 4.0.3
3260 | dev: true
3261 |
3262 | /glob-parent/6.0.2:
3263 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
3264 | engines: {node: '>=10.13.0'}
3265 | dependencies:
3266 | is-glob: 4.0.3
3267 | dev: true
3268 |
3269 | /glob/7.2.3:
3270 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
3271 | dependencies:
3272 | fs.realpath: 1.0.0
3273 | inflight: 1.0.6
3274 | inherits: 2.0.4
3275 | minimatch: 3.1.2
3276 | once: 1.4.0
3277 | path-is-absolute: 1.0.1
3278 | dev: true
3279 |
3280 | /globals/11.12.0:
3281 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
3282 | engines: {node: '>=4'}
3283 | dev: true
3284 |
3285 | /globals/13.19.0:
3286 | resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==}
3287 | engines: {node: '>=8'}
3288 | dependencies:
3289 | type-fest: 0.20.2
3290 | dev: true
3291 |
3292 | /globalthis/1.0.3:
3293 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
3294 | engines: {node: '>= 0.4'}
3295 | dependencies:
3296 | define-properties: 1.1.4
3297 | dev: true
3298 |
3299 | /globalyzer/0.1.0:
3300 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
3301 | dev: true
3302 |
3303 | /globby/11.1.0:
3304 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
3305 | engines: {node: '>=10'}
3306 | dependencies:
3307 | array-union: 2.1.0
3308 | dir-glob: 3.0.1
3309 | fast-glob: 3.2.12
3310 | ignore: 5.2.4
3311 | merge2: 1.4.1
3312 | slash: 3.0.0
3313 | dev: true
3314 |
3315 | /globrex/0.1.2:
3316 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
3317 | dev: true
3318 |
3319 | /gopd/1.0.1:
3320 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
3321 | dependencies:
3322 | get-intrinsic: 1.2.0
3323 | dev: true
3324 |
3325 | /graceful-fs/4.2.10:
3326 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
3327 | dev: true
3328 |
3329 | /grapheme-splitter/1.0.4:
3330 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
3331 | dev: true
3332 |
3333 | /gzip-size/3.0.0:
3334 | resolution: {integrity: sha512-6s8trQiK+OMzSaCSVXX+iqIcLV9tC+E73jrJrJTyS4h/AJhlxHvzFKqM1YLDJWRGgHX8uLkBeXkA0njNj39L4w==}
3335 | engines: {node: '>=0.12.0'}
3336 | dependencies:
3337 | duplexer: 0.1.2
3338 | dev: true
3339 |
3340 | /gzip-size/6.0.0:
3341 | resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
3342 | engines: {node: '>=10'}
3343 | dependencies:
3344 | duplexer: 0.1.2
3345 | dev: true
3346 |
3347 | /has-ansi/2.0.0:
3348 | resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
3349 | engines: {node: '>=0.10.0'}
3350 | dependencies:
3351 | ansi-regex: 2.1.1
3352 | dev: true
3353 |
3354 | /has-bigints/1.0.2:
3355 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
3356 | dev: true
3357 |
3358 | /has-flag/3.0.0:
3359 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
3360 | engines: {node: '>=4'}
3361 | dev: true
3362 |
3363 | /has-flag/4.0.0:
3364 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
3365 | engines: {node: '>=8'}
3366 | dev: true
3367 |
3368 | /has-property-descriptors/1.0.0:
3369 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
3370 | dependencies:
3371 | get-intrinsic: 1.2.0
3372 | dev: true
3373 |
3374 | /has-proto/1.0.1:
3375 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
3376 | engines: {node: '>= 0.4'}
3377 | dev: true
3378 |
3379 | /has-symbols/1.0.3:
3380 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
3381 | engines: {node: '>= 0.4'}
3382 | dev: true
3383 |
3384 | /has-tostringtag/1.0.0:
3385 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
3386 | engines: {node: '>= 0.4'}
3387 | dependencies:
3388 | has-symbols: 1.0.3
3389 | dev: true
3390 |
3391 | /has/1.0.3:
3392 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
3393 | engines: {node: '>= 0.4.0'}
3394 | dependencies:
3395 | function-bind: 1.1.1
3396 | dev: true
3397 |
3398 | /hosted-git-info/2.8.9:
3399 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
3400 | dev: true
3401 |
3402 | /icss-replace-symbols/1.1.0:
3403 | resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==}
3404 | dev: true
3405 |
3406 | /icss-utils/5.1.0_postcss@8.4.21:
3407 | resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
3408 | engines: {node: ^10 || ^12 || >= 14}
3409 | peerDependencies:
3410 | postcss: ^8.1.0
3411 | dependencies:
3412 | postcss: 8.4.21
3413 | dev: true
3414 |
3415 | /ignore/5.2.4:
3416 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
3417 | engines: {node: '>= 4'}
3418 | dev: true
3419 |
3420 | /import-cwd/3.0.0:
3421 | resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==}
3422 | engines: {node: '>=8'}
3423 | dependencies:
3424 | import-from: 3.0.0
3425 | dev: true
3426 |
3427 | /import-fresh/3.3.0:
3428 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
3429 | engines: {node: '>=6'}
3430 | dependencies:
3431 | parent-module: 1.0.1
3432 | resolve-from: 4.0.0
3433 | dev: true
3434 |
3435 | /import-from/3.0.0:
3436 | resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==}
3437 | engines: {node: '>=8'}
3438 | dependencies:
3439 | resolve-from: 5.0.0
3440 | dev: true
3441 |
3442 | /imurmurhash/0.1.4:
3443 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
3444 | engines: {node: '>=0.8.19'}
3445 | dev: true
3446 |
3447 | /inflight/1.0.6:
3448 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
3449 | dependencies:
3450 | once: 1.4.0
3451 | wrappy: 1.0.2
3452 | dev: true
3453 |
3454 | /inherits/2.0.4:
3455 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
3456 | dev: true
3457 |
3458 | /internal-slot/1.0.4:
3459 | resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==}
3460 | engines: {node: '>= 0.4'}
3461 | dependencies:
3462 | get-intrinsic: 1.2.0
3463 | has: 1.0.3
3464 | side-channel: 1.0.4
3465 | dev: true
3466 |
3467 | /is-array-buffer/3.0.1:
3468 | resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==}
3469 | dependencies:
3470 | call-bind: 1.0.2
3471 | get-intrinsic: 1.2.0
3472 | is-typed-array: 1.1.10
3473 | dev: true
3474 |
3475 | /is-arrayish/0.2.1:
3476 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
3477 | dev: true
3478 |
3479 | /is-bigint/1.0.4:
3480 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
3481 | dependencies:
3482 | has-bigints: 1.0.2
3483 | dev: true
3484 |
3485 | /is-binary-path/2.1.0:
3486 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
3487 | engines: {node: '>=8'}
3488 | dependencies:
3489 | binary-extensions: 2.2.0
3490 | dev: true
3491 |
3492 | /is-boolean-object/1.1.2:
3493 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
3494 | engines: {node: '>= 0.4'}
3495 | dependencies:
3496 | call-bind: 1.0.2
3497 | has-tostringtag: 1.0.0
3498 | dev: true
3499 |
3500 | /is-callable/1.2.7:
3501 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
3502 | engines: {node: '>= 0.4'}
3503 | dev: true
3504 |
3505 | /is-core-module/2.11.0:
3506 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
3507 | dependencies:
3508 | has: 1.0.3
3509 | dev: true
3510 |
3511 | /is-date-object/1.0.5:
3512 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
3513 | engines: {node: '>= 0.4'}
3514 | dependencies:
3515 | has-tostringtag: 1.0.0
3516 | dev: true
3517 |
3518 | /is-docker/2.2.1:
3519 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
3520 | engines: {node: '>=8'}
3521 | hasBin: true
3522 | dev: true
3523 |
3524 | /is-extglob/2.1.1:
3525 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
3526 | engines: {node: '>=0.10.0'}
3527 | dev: true
3528 |
3529 | /is-fullwidth-code-point/3.0.0:
3530 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
3531 | engines: {node: '>=8'}
3532 | dev: true
3533 |
3534 | /is-glob/4.0.3:
3535 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
3536 | engines: {node: '>=0.10.0'}
3537 | dependencies:
3538 | is-extglob: 2.1.1
3539 | dev: true
3540 |
3541 | /is-module/1.0.0:
3542 | resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
3543 | dev: true
3544 |
3545 | /is-negative-zero/2.0.2:
3546 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
3547 | engines: {node: '>= 0.4'}
3548 | dev: true
3549 |
3550 | /is-number-object/1.0.7:
3551 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
3552 | engines: {node: '>= 0.4'}
3553 | dependencies:
3554 | has-tostringtag: 1.0.0
3555 | dev: true
3556 |
3557 | /is-number/7.0.0:
3558 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
3559 | engines: {node: '>=0.12.0'}
3560 | dev: true
3561 |
3562 | /is-path-inside/3.0.3:
3563 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
3564 | engines: {node: '>=8'}
3565 | dev: true
3566 |
3567 | /is-reference/1.2.1:
3568 | resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
3569 | dependencies:
3570 | '@types/estree': 1.0.0
3571 | dev: true
3572 |
3573 | /is-regex/1.1.4:
3574 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
3575 | engines: {node: '>= 0.4'}
3576 | dependencies:
3577 | call-bind: 1.0.2
3578 | has-tostringtag: 1.0.0
3579 | dev: true
3580 |
3581 | /is-shared-array-buffer/1.0.2:
3582 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
3583 | dependencies:
3584 | call-bind: 1.0.2
3585 | dev: true
3586 |
3587 | /is-string/1.0.7:
3588 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
3589 | engines: {node: '>= 0.4'}
3590 | dependencies:
3591 | has-tostringtag: 1.0.0
3592 | dev: true
3593 |
3594 | /is-symbol/1.0.4:
3595 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
3596 | engines: {node: '>= 0.4'}
3597 | dependencies:
3598 | has-symbols: 1.0.3
3599 | dev: true
3600 |
3601 | /is-typed-array/1.1.10:
3602 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
3603 | engines: {node: '>= 0.4'}
3604 | dependencies:
3605 | available-typed-arrays: 1.0.5
3606 | call-bind: 1.0.2
3607 | for-each: 0.3.3
3608 | gopd: 1.0.1
3609 | has-tostringtag: 1.0.0
3610 | dev: true
3611 |
3612 | /is-weakref/1.0.2:
3613 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
3614 | dependencies:
3615 | call-bind: 1.0.2
3616 | dev: true
3617 |
3618 | /is-wsl/2.2.0:
3619 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
3620 | engines: {node: '>=8'}
3621 | dependencies:
3622 | is-docker: 2.2.1
3623 | dev: true
3624 |
3625 | /isexe/2.0.0:
3626 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
3627 | dev: true
3628 |
3629 | /jake/10.8.5:
3630 | resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
3631 | engines: {node: '>=10'}
3632 | hasBin: true
3633 | dependencies:
3634 | async: 3.2.4
3635 | chalk: 4.1.2
3636 | filelist: 1.0.4
3637 | minimatch: 3.1.2
3638 | dev: true
3639 |
3640 | /jest-worker/26.6.2:
3641 | resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
3642 | engines: {node: '>= 10.13.0'}
3643 | dependencies:
3644 | '@types/node': 18.11.18
3645 | merge-stream: 2.0.0
3646 | supports-color: 7.2.0
3647 | dev: true
3648 |
3649 | /js-sdsl/4.3.0:
3650 | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
3651 | dev: true
3652 |
3653 | /js-tokens/4.0.0:
3654 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
3655 | dev: true
3656 |
3657 | /js-yaml/4.1.0:
3658 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
3659 | hasBin: true
3660 | dependencies:
3661 | argparse: 2.0.1
3662 | dev: true
3663 |
3664 | /jsesc/0.5.0:
3665 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
3666 | hasBin: true
3667 | dev: true
3668 |
3669 | /jsesc/2.5.2:
3670 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
3671 | engines: {node: '>=4'}
3672 | hasBin: true
3673 | dev: true
3674 |
3675 | /json-parse-better-errors/1.0.2:
3676 | resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
3677 | dev: true
3678 |
3679 | /json-parse-even-better-errors/2.3.1:
3680 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
3681 | dev: true
3682 |
3683 | /json-schema-traverse/0.4.1:
3684 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
3685 | dev: true
3686 |
3687 | /json-stable-stringify-without-jsonify/1.0.1:
3688 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
3689 | dev: true
3690 |
3691 | /json5/1.0.2:
3692 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
3693 | hasBin: true
3694 | dependencies:
3695 | minimist: 1.2.7
3696 | dev: true
3697 |
3698 | /json5/2.2.3:
3699 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
3700 | engines: {node: '>=6'}
3701 | hasBin: true
3702 | dev: true
3703 |
3704 | /jsonfile/6.1.0:
3705 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
3706 | dependencies:
3707 | universalify: 2.0.0
3708 | optionalDependencies:
3709 | graceful-fs: 4.2.10
3710 | dev: true
3711 |
3712 | /jsx-ast-utils/3.3.3:
3713 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
3714 | engines: {node: '>=4.0'}
3715 | dependencies:
3716 | array-includes: 3.1.6
3717 | object.assign: 4.1.4
3718 | dev: true
3719 |
3720 | /kleur/4.1.5:
3721 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
3722 | engines: {node: '>=6'}
3723 | dev: true
3724 |
3725 | /levn/0.4.1:
3726 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
3727 | engines: {node: '>= 0.8.0'}
3728 | dependencies:
3729 | prelude-ls: 1.2.1
3730 | type-check: 0.4.0
3731 | dev: true
3732 |
3733 | /lilconfig/2.0.6:
3734 | resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==}
3735 | engines: {node: '>=10'}
3736 | dev: true
3737 |
3738 | /lines-and-columns/1.2.4:
3739 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
3740 | dev: true
3741 |
3742 | /load-json-file/4.0.0:
3743 | resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
3744 | engines: {node: '>=4'}
3745 | dependencies:
3746 | graceful-fs: 4.2.10
3747 | parse-json: 4.0.0
3748 | pify: 3.0.0
3749 | strip-bom: 3.0.0
3750 | dev: true
3751 |
3752 | /loader-utils/3.2.1:
3753 | resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
3754 | engines: {node: '>= 12.13.0'}
3755 | dev: true
3756 |
3757 | /locate-path/5.0.0:
3758 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
3759 | engines: {node: '>=8'}
3760 | dependencies:
3761 | p-locate: 4.1.0
3762 | dev: true
3763 |
3764 | /locate-path/6.0.0:
3765 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
3766 | engines: {node: '>=10'}
3767 | dependencies:
3768 | p-locate: 5.0.0
3769 | dev: true
3770 |
3771 | /lodash.camelcase/4.3.0:
3772 | resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
3773 | dev: true
3774 |
3775 | /lodash.debounce/4.0.8:
3776 | resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
3777 | dev: true
3778 |
3779 | /lodash.memoize/4.1.2:
3780 | resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
3781 | dev: true
3782 |
3783 | /lodash.merge/4.6.2:
3784 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
3785 | dev: true
3786 |
3787 | /lodash.uniq/4.5.0:
3788 | resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
3789 | dev: true
3790 |
3791 | /loose-envify/1.4.0:
3792 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
3793 | hasBin: true
3794 | dependencies:
3795 | js-tokens: 4.0.0
3796 | dev: true
3797 |
3798 | /lru-cache/5.1.1:
3799 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
3800 | dependencies:
3801 | yallist: 3.1.1
3802 | dev: true
3803 |
3804 | /lru-cache/6.0.0:
3805 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
3806 | engines: {node: '>=10'}
3807 | dependencies:
3808 | yallist: 4.0.0
3809 | dev: true
3810 |
3811 | /magic-string/0.25.9:
3812 | resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
3813 | dependencies:
3814 | sourcemap-codec: 1.4.8
3815 | dev: true
3816 |
3817 | /make-dir/3.1.0:
3818 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
3819 | engines: {node: '>=8'}
3820 | dependencies:
3821 | semver: 6.3.0
3822 | dev: true
3823 |
3824 | /maxmin/2.1.0:
3825 | resolution: {integrity: sha512-NWlApBjW9az9qRPaeg7CX4sQBWwytqz32bIEo1PW9pRW+kBP9KLRfJO3UC+TV31EcQZEUq7eMzikC7zt3zPJcw==}
3826 | engines: {node: '>=0.12'}
3827 | dependencies:
3828 | chalk: 1.1.3
3829 | figures: 1.7.0
3830 | gzip-size: 3.0.0
3831 | pretty-bytes: 3.0.1
3832 | dev: true
3833 |
3834 | /mdn-data/2.0.14:
3835 | resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
3836 | dev: true
3837 |
3838 | /memorystream/0.3.1:
3839 | resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
3840 | engines: {node: '>= 0.10.0'}
3841 | dev: true
3842 |
3843 | /merge-stream/2.0.0:
3844 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
3845 | dev: true
3846 |
3847 | /merge2/1.4.1:
3848 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
3849 | engines: {node: '>= 8'}
3850 | dev: true
3851 |
3852 | /microbundle/0.15.1:
3853 | resolution: {integrity: sha512-aAF+nwFbkSIJGfrJk+HyzmJOq3KFaimH6OIFBU6J2DPjQeg1jXIYlIyEv81Gyisb9moUkudn+wj7zLNYMOv75Q==}
3854 | hasBin: true
3855 | dependencies:
3856 | '@babel/core': 7.20.12
3857 | '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.20.12
3858 | '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.12
3859 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
3860 | '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12
3861 | '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12
3862 | '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
3863 | '@babel/preset-env': 7.20.2_@babel+core@7.20.12
3864 | '@babel/preset-flow': 7.18.6_@babel+core@7.20.12
3865 | '@babel/preset-react': 7.18.6_@babel+core@7.20.12
3866 | '@rollup/plugin-alias': 3.1.9_rollup@2.79.1
3867 | '@rollup/plugin-babel': 5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm
3868 | '@rollup/plugin-commonjs': 17.1.0_rollup@2.79.1
3869 | '@rollup/plugin-json': 4.1.0_rollup@2.79.1
3870 | '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1
3871 | '@surma/rollup-plugin-off-main-thread': 2.2.3
3872 | asyncro: 3.0.0
3873 | autoprefixer: 10.4.13_postcss@8.4.21
3874 | babel-plugin-macros: 3.1.0
3875 | babel-plugin-transform-async-to-promises: 0.8.18
3876 | babel-plugin-transform-replace-expressions: 0.2.0_@babel+core@7.20.12
3877 | brotli-size: 4.0.0
3878 | builtin-modules: 3.3.0
3879 | camelcase: 6.3.0
3880 | escape-string-regexp: 4.0.0
3881 | filesize: 6.4.0
3882 | gzip-size: 6.0.0
3883 | kleur: 4.1.5
3884 | lodash.merge: 4.6.2
3885 | postcss: 8.4.21
3886 | pretty-bytes: 5.6.0
3887 | rollup: 2.79.1
3888 | rollup-plugin-bundle-size: 1.0.3
3889 | rollup-plugin-postcss: 4.0.2_postcss@8.4.21
3890 | rollup-plugin-terser: 7.0.2_rollup@2.79.1
3891 | rollup-plugin-typescript2: 0.32.1_ntuob3xud5wukob6phfmz2mbyy
3892 | rollup-plugin-visualizer: 5.9.0_rollup@2.79.1
3893 | sade: 1.8.1
3894 | terser: 5.16.2
3895 | tiny-glob: 0.2.9
3896 | tslib: 2.5.0
3897 | typescript: 4.9.4
3898 | transitivePeerDependencies:
3899 | - '@types/babel__core'
3900 | - supports-color
3901 | - ts-node
3902 | dev: true
3903 |
3904 | /micromatch/4.0.5:
3905 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
3906 | engines: {node: '>=8.6'}
3907 | dependencies:
3908 | braces: 3.0.2
3909 | picomatch: 2.3.1
3910 | dev: true
3911 |
3912 | /minimatch/3.1.2:
3913 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
3914 | dependencies:
3915 | brace-expansion: 1.1.11
3916 | dev: true
3917 |
3918 | /minimatch/5.1.6:
3919 | resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
3920 | engines: {node: '>=10'}
3921 | dependencies:
3922 | brace-expansion: 2.0.1
3923 | dev: true
3924 |
3925 | /minimist/1.2.7:
3926 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
3927 | dev: true
3928 |
3929 | /mri/1.2.0:
3930 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
3931 | engines: {node: '>=4'}
3932 | dev: true
3933 |
3934 | /ms/2.1.2:
3935 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
3936 | dev: true
3937 |
3938 | /nanoid/3.3.4:
3939 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
3940 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
3941 | hasBin: true
3942 | dev: true
3943 |
3944 | /nanospinner/1.1.0:
3945 | resolution: {integrity: sha512-yFvNYMig4AthKYfHFl1sLj7B2nkHL4lzdig4osvl9/LdGbXwrdFRoqBS98gsEsOakr0yH+r5NZ/1Y9gdVB8trA==}
3946 | dependencies:
3947 | picocolors: 1.0.0
3948 | dev: true
3949 |
3950 | /natural-compare/1.4.0:
3951 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
3952 | dev: true
3953 |
3954 | /nice-try/1.0.5:
3955 | resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
3956 | dev: true
3957 |
3958 | /node-releases/2.0.8:
3959 | resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==}
3960 | dev: true
3961 |
3962 | /normalize-package-data/2.5.0:
3963 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
3964 | dependencies:
3965 | hosted-git-info: 2.8.9
3966 | resolve: 1.22.1
3967 | semver: 5.7.1
3968 | validate-npm-package-license: 3.0.4
3969 | dev: true
3970 |
3971 | /normalize-path/3.0.0:
3972 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
3973 | engines: {node: '>=0.10.0'}
3974 | dev: true
3975 |
3976 | /normalize-range/0.1.2:
3977 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
3978 | engines: {node: '>=0.10.0'}
3979 | dev: true
3980 |
3981 | /normalize-url/6.1.0:
3982 | resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
3983 | engines: {node: '>=10'}
3984 | dev: true
3985 |
3986 | /npm-run-all/4.1.5:
3987 | resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
3988 | engines: {node: '>= 4'}
3989 | hasBin: true
3990 | dependencies:
3991 | ansi-styles: 3.2.1
3992 | chalk: 2.4.2
3993 | cross-spawn: 6.0.5
3994 | memorystream: 0.3.1
3995 | minimatch: 3.1.2
3996 | pidtree: 0.3.1
3997 | read-pkg: 3.0.0
3998 | shell-quote: 1.7.4
3999 | string.prototype.padend: 3.1.4
4000 | dev: true
4001 |
4002 | /nth-check/2.1.1:
4003 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
4004 | dependencies:
4005 | boolbase: 1.0.0
4006 | dev: true
4007 |
4008 | /number-is-nan/1.0.1:
4009 | resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
4010 | engines: {node: '>=0.10.0'}
4011 | dev: true
4012 |
4013 | /object-assign/4.1.1:
4014 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
4015 | engines: {node: '>=0.10.0'}
4016 | dev: true
4017 |
4018 | /object-inspect/1.12.3:
4019 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
4020 | dev: true
4021 |
4022 | /object-keys/1.1.1:
4023 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
4024 | engines: {node: '>= 0.4'}
4025 | dev: true
4026 |
4027 | /object.assign/4.1.4:
4028 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
4029 | engines: {node: '>= 0.4'}
4030 | dependencies:
4031 | call-bind: 1.0.2
4032 | define-properties: 1.1.4
4033 | has-symbols: 1.0.3
4034 | object-keys: 1.1.1
4035 | dev: true
4036 |
4037 | /object.entries/1.1.6:
4038 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
4039 | engines: {node: '>= 0.4'}
4040 | dependencies:
4041 | call-bind: 1.0.2
4042 | define-properties: 1.1.4
4043 | es-abstract: 1.21.1
4044 | dev: true
4045 |
4046 | /object.fromentries/2.0.6:
4047 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
4048 | engines: {node: '>= 0.4'}
4049 | dependencies:
4050 | call-bind: 1.0.2
4051 | define-properties: 1.1.4
4052 | es-abstract: 1.21.1
4053 | dev: true
4054 |
4055 | /object.hasown/1.1.2:
4056 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
4057 | dependencies:
4058 | define-properties: 1.1.4
4059 | es-abstract: 1.21.1
4060 | dev: true
4061 |
4062 | /object.values/1.1.6:
4063 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
4064 | engines: {node: '>= 0.4'}
4065 | dependencies:
4066 | call-bind: 1.0.2
4067 | define-properties: 1.1.4
4068 | es-abstract: 1.21.1
4069 | dev: true
4070 |
4071 | /once/1.4.0:
4072 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
4073 | dependencies:
4074 | wrappy: 1.0.2
4075 | dev: true
4076 |
4077 | /open/8.4.0:
4078 | resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
4079 | engines: {node: '>=12'}
4080 | dependencies:
4081 | define-lazy-prop: 2.0.0
4082 | is-docker: 2.2.1
4083 | is-wsl: 2.2.0
4084 | dev: true
4085 |
4086 | /optionator/0.9.1:
4087 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
4088 | engines: {node: '>= 0.8.0'}
4089 | dependencies:
4090 | deep-is: 0.1.4
4091 | fast-levenshtein: 2.0.6
4092 | levn: 0.4.1
4093 | prelude-ls: 1.2.1
4094 | type-check: 0.4.0
4095 | word-wrap: 1.2.3
4096 | dev: true
4097 |
4098 | /p-finally/1.0.0:
4099 | resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
4100 | engines: {node: '>=4'}
4101 | dev: true
4102 |
4103 | /p-limit/2.3.0:
4104 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
4105 | engines: {node: '>=6'}
4106 | dependencies:
4107 | p-try: 2.2.0
4108 | dev: true
4109 |
4110 | /p-limit/3.1.0:
4111 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
4112 | engines: {node: '>=10'}
4113 | dependencies:
4114 | yocto-queue: 0.1.0
4115 | dev: true
4116 |
4117 | /p-locate/4.1.0:
4118 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
4119 | engines: {node: '>=8'}
4120 | dependencies:
4121 | p-limit: 2.3.0
4122 | dev: true
4123 |
4124 | /p-locate/5.0.0:
4125 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
4126 | engines: {node: '>=10'}
4127 | dependencies:
4128 | p-limit: 3.1.0
4129 | dev: true
4130 |
4131 | /p-queue/6.6.2:
4132 | resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
4133 | engines: {node: '>=8'}
4134 | dependencies:
4135 | eventemitter3: 4.0.7
4136 | p-timeout: 3.2.0
4137 | dev: true
4138 |
4139 | /p-timeout/3.2.0:
4140 | resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
4141 | engines: {node: '>=8'}
4142 | dependencies:
4143 | p-finally: 1.0.0
4144 | dev: true
4145 |
4146 | /p-try/2.2.0:
4147 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
4148 | engines: {node: '>=6'}
4149 | dev: true
4150 |
4151 | /parent-module/1.0.1:
4152 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
4153 | engines: {node: '>=6'}
4154 | dependencies:
4155 | callsites: 3.1.0
4156 | dev: true
4157 |
4158 | /parse-json/4.0.0:
4159 | resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
4160 | engines: {node: '>=4'}
4161 | dependencies:
4162 | error-ex: 1.3.2
4163 | json-parse-better-errors: 1.0.2
4164 | dev: true
4165 |
4166 | /parse-json/5.2.0:
4167 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
4168 | engines: {node: '>=8'}
4169 | dependencies:
4170 | '@babel/code-frame': 7.18.6
4171 | error-ex: 1.3.2
4172 | json-parse-even-better-errors: 2.3.1
4173 | lines-and-columns: 1.2.4
4174 | dev: true
4175 |
4176 | /path-exists/4.0.0:
4177 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
4178 | engines: {node: '>=8'}
4179 | dev: true
4180 |
4181 | /path-is-absolute/1.0.1:
4182 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
4183 | engines: {node: '>=0.10.0'}
4184 | dev: true
4185 |
4186 | /path-key/2.0.1:
4187 | resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
4188 | engines: {node: '>=4'}
4189 | dev: true
4190 |
4191 | /path-key/3.1.1:
4192 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
4193 | engines: {node: '>=8'}
4194 | dev: true
4195 |
4196 | /path-parse/1.0.7:
4197 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
4198 | dev: true
4199 |
4200 | /path-type/3.0.0:
4201 | resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
4202 | engines: {node: '>=4'}
4203 | dependencies:
4204 | pify: 3.0.0
4205 | dev: true
4206 |
4207 | /path-type/4.0.0:
4208 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
4209 | engines: {node: '>=8'}
4210 | dev: true
4211 |
4212 | /picocolors/1.0.0:
4213 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
4214 | dev: true
4215 |
4216 | /picomatch/2.3.1:
4217 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
4218 | engines: {node: '>=8.6'}
4219 | dev: true
4220 |
4221 | /pidtree/0.3.1:
4222 | resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
4223 | engines: {node: '>=0.10'}
4224 | hasBin: true
4225 | dev: true
4226 |
4227 | /pify/3.0.0:
4228 | resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
4229 | engines: {node: '>=4'}
4230 | dev: true
4231 |
4232 | /pify/5.0.0:
4233 | resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==}
4234 | engines: {node: '>=10'}
4235 | dev: true
4236 |
4237 | /pkg-dir/4.2.0:
4238 | resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
4239 | engines: {node: '>=8'}
4240 | dependencies:
4241 | find-up: 4.1.0
4242 | dev: true
4243 |
4244 | /postcss-calc/8.2.4_postcss@8.4.21:
4245 | resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
4246 | peerDependencies:
4247 | postcss: ^8.2.2
4248 | dependencies:
4249 | postcss: 8.4.21
4250 | postcss-selector-parser: 6.0.11
4251 | postcss-value-parser: 4.2.0
4252 | dev: true
4253 |
4254 | /postcss-colormin/5.3.0_postcss@8.4.21:
4255 | resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
4256 | engines: {node: ^10 || ^12 || >=14.0}
4257 | peerDependencies:
4258 | postcss: ^8.2.15
4259 | dependencies:
4260 | browserslist: 4.21.5
4261 | caniuse-api: 3.0.0
4262 | colord: 2.9.3
4263 | postcss: 8.4.21
4264 | postcss-value-parser: 4.2.0
4265 | dev: true
4266 |
4267 | /postcss-convert-values/5.1.3_postcss@8.4.21:
4268 | resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
4269 | engines: {node: ^10 || ^12 || >=14.0}
4270 | peerDependencies:
4271 | postcss: ^8.2.15
4272 | dependencies:
4273 | browserslist: 4.21.5
4274 | postcss: 8.4.21
4275 | postcss-value-parser: 4.2.0
4276 | dev: true
4277 |
4278 | /postcss-discard-comments/5.1.2_postcss@8.4.21:
4279 | resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
4280 | engines: {node: ^10 || ^12 || >=14.0}
4281 | peerDependencies:
4282 | postcss: ^8.2.15
4283 | dependencies:
4284 | postcss: 8.4.21
4285 | dev: true
4286 |
4287 | /postcss-discard-duplicates/5.1.0_postcss@8.4.21:
4288 | resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
4289 | engines: {node: ^10 || ^12 || >=14.0}
4290 | peerDependencies:
4291 | postcss: ^8.2.15
4292 | dependencies:
4293 | postcss: 8.4.21
4294 | dev: true
4295 |
4296 | /postcss-discard-empty/5.1.1_postcss@8.4.21:
4297 | resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
4298 | engines: {node: ^10 || ^12 || >=14.0}
4299 | peerDependencies:
4300 | postcss: ^8.2.15
4301 | dependencies:
4302 | postcss: 8.4.21
4303 | dev: true
4304 |
4305 | /postcss-discard-overridden/5.1.0_postcss@8.4.21:
4306 | resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
4307 | engines: {node: ^10 || ^12 || >=14.0}
4308 | peerDependencies:
4309 | postcss: ^8.2.15
4310 | dependencies:
4311 | postcss: 8.4.21
4312 | dev: true
4313 |
4314 | /postcss-load-config/3.1.4_postcss@8.4.21:
4315 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
4316 | engines: {node: '>= 10'}
4317 | peerDependencies:
4318 | postcss: '>=8.0.9'
4319 | ts-node: '>=9.0.0'
4320 | peerDependenciesMeta:
4321 | postcss:
4322 | optional: true
4323 | ts-node:
4324 | optional: true
4325 | dependencies:
4326 | lilconfig: 2.0.6
4327 | postcss: 8.4.21
4328 | yaml: 1.10.2
4329 | dev: true
4330 |
4331 | /postcss-merge-longhand/5.1.7_postcss@8.4.21:
4332 | resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
4333 | engines: {node: ^10 || ^12 || >=14.0}
4334 | peerDependencies:
4335 | postcss: ^8.2.15
4336 | dependencies:
4337 | postcss: 8.4.21
4338 | postcss-value-parser: 4.2.0
4339 | stylehacks: 5.1.1_postcss@8.4.21
4340 | dev: true
4341 |
4342 | /postcss-merge-rules/5.1.3_postcss@8.4.21:
4343 | resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==}
4344 | engines: {node: ^10 || ^12 || >=14.0}
4345 | peerDependencies:
4346 | postcss: ^8.2.15
4347 | dependencies:
4348 | browserslist: 4.21.5
4349 | caniuse-api: 3.0.0
4350 | cssnano-utils: 3.1.0_postcss@8.4.21
4351 | postcss: 8.4.21
4352 | postcss-selector-parser: 6.0.11
4353 | dev: true
4354 |
4355 | /postcss-minify-font-values/5.1.0_postcss@8.4.21:
4356 | resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
4357 | engines: {node: ^10 || ^12 || >=14.0}
4358 | peerDependencies:
4359 | postcss: ^8.2.15
4360 | dependencies:
4361 | postcss: 8.4.21
4362 | postcss-value-parser: 4.2.0
4363 | dev: true
4364 |
4365 | /postcss-minify-gradients/5.1.1_postcss@8.4.21:
4366 | resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
4367 | engines: {node: ^10 || ^12 || >=14.0}
4368 | peerDependencies:
4369 | postcss: ^8.2.15
4370 | dependencies:
4371 | colord: 2.9.3
4372 | cssnano-utils: 3.1.0_postcss@8.4.21
4373 | postcss: 8.4.21
4374 | postcss-value-parser: 4.2.0
4375 | dev: true
4376 |
4377 | /postcss-minify-params/5.1.4_postcss@8.4.21:
4378 | resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
4379 | engines: {node: ^10 || ^12 || >=14.0}
4380 | peerDependencies:
4381 | postcss: ^8.2.15
4382 | dependencies:
4383 | browserslist: 4.21.5
4384 | cssnano-utils: 3.1.0_postcss@8.4.21
4385 | postcss: 8.4.21
4386 | postcss-value-parser: 4.2.0
4387 | dev: true
4388 |
4389 | /postcss-minify-selectors/5.2.1_postcss@8.4.21:
4390 | resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
4391 | engines: {node: ^10 || ^12 || >=14.0}
4392 | peerDependencies:
4393 | postcss: ^8.2.15
4394 | dependencies:
4395 | postcss: 8.4.21
4396 | postcss-selector-parser: 6.0.11
4397 | dev: true
4398 |
4399 | /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
4400 | resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
4401 | engines: {node: ^10 || ^12 || >= 14}
4402 | peerDependencies:
4403 | postcss: ^8.1.0
4404 | dependencies:
4405 | postcss: 8.4.21
4406 | dev: true
4407 |
4408 | /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
4409 | resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
4410 | engines: {node: ^10 || ^12 || >= 14}
4411 | peerDependencies:
4412 | postcss: ^8.1.0
4413 | dependencies:
4414 | icss-utils: 5.1.0_postcss@8.4.21
4415 | postcss: 8.4.21
4416 | postcss-selector-parser: 6.0.11
4417 | postcss-value-parser: 4.2.0
4418 | dev: true
4419 |
4420 | /postcss-modules-scope/3.0.0_postcss@8.4.21:
4421 | resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
4422 | engines: {node: ^10 || ^12 || >= 14}
4423 | peerDependencies:
4424 | postcss: ^8.1.0
4425 | dependencies:
4426 | postcss: 8.4.21
4427 | postcss-selector-parser: 6.0.11
4428 | dev: true
4429 |
4430 | /postcss-modules-values/4.0.0_postcss@8.4.21:
4431 | resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
4432 | engines: {node: ^10 || ^12 || >= 14}
4433 | peerDependencies:
4434 | postcss: ^8.1.0
4435 | dependencies:
4436 | icss-utils: 5.1.0_postcss@8.4.21
4437 | postcss: 8.4.21
4438 | dev: true
4439 |
4440 | /postcss-modules/4.3.1_postcss@8.4.21:
4441 | resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==}
4442 | peerDependencies:
4443 | postcss: ^8.0.0
4444 | dependencies:
4445 | generic-names: 4.0.0
4446 | icss-replace-symbols: 1.1.0
4447 | lodash.camelcase: 4.3.0
4448 | postcss: 8.4.21
4449 | postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
4450 | postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
4451 | postcss-modules-scope: 3.0.0_postcss@8.4.21
4452 | postcss-modules-values: 4.0.0_postcss@8.4.21
4453 | string-hash: 1.1.3
4454 | dev: true
4455 |
4456 | /postcss-normalize-charset/5.1.0_postcss@8.4.21:
4457 | resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
4458 | engines: {node: ^10 || ^12 || >=14.0}
4459 | peerDependencies:
4460 | postcss: ^8.2.15
4461 | dependencies:
4462 | postcss: 8.4.21
4463 | dev: true
4464 |
4465 | /postcss-normalize-display-values/5.1.0_postcss@8.4.21:
4466 | resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
4467 | engines: {node: ^10 || ^12 || >=14.0}
4468 | peerDependencies:
4469 | postcss: ^8.2.15
4470 | dependencies:
4471 | postcss: 8.4.21
4472 | postcss-value-parser: 4.2.0
4473 | dev: true
4474 |
4475 | /postcss-normalize-positions/5.1.1_postcss@8.4.21:
4476 | resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
4477 | engines: {node: ^10 || ^12 || >=14.0}
4478 | peerDependencies:
4479 | postcss: ^8.2.15
4480 | dependencies:
4481 | postcss: 8.4.21
4482 | postcss-value-parser: 4.2.0
4483 | dev: true
4484 |
4485 | /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21:
4486 | resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
4487 | engines: {node: ^10 || ^12 || >=14.0}
4488 | peerDependencies:
4489 | postcss: ^8.2.15
4490 | dependencies:
4491 | postcss: 8.4.21
4492 | postcss-value-parser: 4.2.0
4493 | dev: true
4494 |
4495 | /postcss-normalize-string/5.1.0_postcss@8.4.21:
4496 | resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
4497 | engines: {node: ^10 || ^12 || >=14.0}
4498 | peerDependencies:
4499 | postcss: ^8.2.15
4500 | dependencies:
4501 | postcss: 8.4.21
4502 | postcss-value-parser: 4.2.0
4503 | dev: true
4504 |
4505 | /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21:
4506 | resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
4507 | engines: {node: ^10 || ^12 || >=14.0}
4508 | peerDependencies:
4509 | postcss: ^8.2.15
4510 | dependencies:
4511 | postcss: 8.4.21
4512 | postcss-value-parser: 4.2.0
4513 | dev: true
4514 |
4515 | /postcss-normalize-unicode/5.1.1_postcss@8.4.21:
4516 | resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
4517 | engines: {node: ^10 || ^12 || >=14.0}
4518 | peerDependencies:
4519 | postcss: ^8.2.15
4520 | dependencies:
4521 | browserslist: 4.21.5
4522 | postcss: 8.4.21
4523 | postcss-value-parser: 4.2.0
4524 | dev: true
4525 |
4526 | /postcss-normalize-url/5.1.0_postcss@8.4.21:
4527 | resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
4528 | engines: {node: ^10 || ^12 || >=14.0}
4529 | peerDependencies:
4530 | postcss: ^8.2.15
4531 | dependencies:
4532 | normalize-url: 6.1.0
4533 | postcss: 8.4.21
4534 | postcss-value-parser: 4.2.0
4535 | dev: true
4536 |
4537 | /postcss-normalize-whitespace/5.1.1_postcss@8.4.21:
4538 | resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
4539 | engines: {node: ^10 || ^12 || >=14.0}
4540 | peerDependencies:
4541 | postcss: ^8.2.15
4542 | dependencies:
4543 | postcss: 8.4.21
4544 | postcss-value-parser: 4.2.0
4545 | dev: true
4546 |
4547 | /postcss-ordered-values/5.1.3_postcss@8.4.21:
4548 | resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
4549 | engines: {node: ^10 || ^12 || >=14.0}
4550 | peerDependencies:
4551 | postcss: ^8.2.15
4552 | dependencies:
4553 | cssnano-utils: 3.1.0_postcss@8.4.21
4554 | postcss: 8.4.21
4555 | postcss-value-parser: 4.2.0
4556 | dev: true
4557 |
4558 | /postcss-reduce-initial/5.1.1_postcss@8.4.21:
4559 | resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==}
4560 | engines: {node: ^10 || ^12 || >=14.0}
4561 | peerDependencies:
4562 | postcss: ^8.2.15
4563 | dependencies:
4564 | browserslist: 4.21.5
4565 | caniuse-api: 3.0.0
4566 | postcss: 8.4.21
4567 | dev: true
4568 |
4569 | /postcss-reduce-transforms/5.1.0_postcss@8.4.21:
4570 | resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
4571 | engines: {node: ^10 || ^12 || >=14.0}
4572 | peerDependencies:
4573 | postcss: ^8.2.15
4574 | dependencies:
4575 | postcss: 8.4.21
4576 | postcss-value-parser: 4.2.0
4577 | dev: true
4578 |
4579 | /postcss-selector-parser/6.0.11:
4580 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
4581 | engines: {node: '>=4'}
4582 | dependencies:
4583 | cssesc: 3.0.0
4584 | util-deprecate: 1.0.2
4585 | dev: true
4586 |
4587 | /postcss-svgo/5.1.0_postcss@8.4.21:
4588 | resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
4589 | engines: {node: ^10 || ^12 || >=14.0}
4590 | peerDependencies:
4591 | postcss: ^8.2.15
4592 | dependencies:
4593 | postcss: 8.4.21
4594 | postcss-value-parser: 4.2.0
4595 | svgo: 2.8.0
4596 | dev: true
4597 |
4598 | /postcss-unique-selectors/5.1.1_postcss@8.4.21:
4599 | resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
4600 | engines: {node: ^10 || ^12 || >=14.0}
4601 | peerDependencies:
4602 | postcss: ^8.2.15
4603 | dependencies:
4604 | postcss: 8.4.21
4605 | postcss-selector-parser: 6.0.11
4606 | dev: true
4607 |
4608 | /postcss-value-parser/4.2.0:
4609 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
4610 | dev: true
4611 |
4612 | /postcss/8.4.21:
4613 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
4614 | engines: {node: ^10 || ^12 || >=14}
4615 | dependencies:
4616 | nanoid: 3.3.4
4617 | picocolors: 1.0.0
4618 | source-map-js: 1.0.2
4619 | dev: true
4620 |
4621 | /prelude-ls/1.2.1:
4622 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
4623 | engines: {node: '>= 0.8.0'}
4624 | dev: true
4625 |
4626 | /prettier/2.8.3:
4627 | resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
4628 | engines: {node: '>=10.13.0'}
4629 | hasBin: true
4630 | dev: true
4631 |
4632 | /pretty-bytes/3.0.1:
4633 | resolution: {integrity: sha512-eb7ZAeUTgfh294cElcu51w+OTRp/6ItW758LjwJSK72LDevcuJn0P4eD71PLMDGPwwatXmAmYHTkzvpKlJE3ow==}
4634 | engines: {node: '>=0.10.0'}
4635 | dependencies:
4636 | number-is-nan: 1.0.1
4637 | dev: true
4638 |
4639 | /pretty-bytes/5.6.0:
4640 | resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
4641 | engines: {node: '>=6'}
4642 | dev: true
4643 |
4644 | /promise.series/0.2.0:
4645 | resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==}
4646 | engines: {node: '>=0.12'}
4647 | dev: true
4648 |
4649 | /prop-types/15.8.1:
4650 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
4651 | dependencies:
4652 | loose-envify: 1.4.0
4653 | object-assign: 4.1.1
4654 | react-is: 16.13.1
4655 | dev: true
4656 |
4657 | /punycode/2.3.0:
4658 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
4659 | engines: {node: '>=6'}
4660 | dev: true
4661 |
4662 | /queue-microtask/1.2.3:
4663 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
4664 | dev: true
4665 |
4666 | /randombytes/2.1.0:
4667 | resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
4668 | dependencies:
4669 | safe-buffer: 5.1.2
4670 | dev: true
4671 |
4672 | /react-is/16.13.1:
4673 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
4674 | dev: true
4675 |
4676 | /read-pkg/3.0.0:
4677 | resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
4678 | engines: {node: '>=4'}
4679 | dependencies:
4680 | load-json-file: 4.0.0
4681 | normalize-package-data: 2.5.0
4682 | path-type: 3.0.0
4683 | dev: true
4684 |
4685 | /readdirp/3.6.0:
4686 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
4687 | engines: {node: '>=8.10.0'}
4688 | dependencies:
4689 | picomatch: 2.3.1
4690 | dev: true
4691 |
4692 | /regenerate-unicode-properties/10.1.0:
4693 | resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
4694 | engines: {node: '>=4'}
4695 | dependencies:
4696 | regenerate: 1.4.2
4697 | dev: true
4698 |
4699 | /regenerate/1.4.2:
4700 | resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
4701 | dev: true
4702 |
4703 | /regenerator-runtime/0.13.11:
4704 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
4705 | dev: true
4706 |
4707 | /regenerator-transform/0.15.1:
4708 | resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
4709 | dependencies:
4710 | '@babel/runtime': 7.20.13
4711 | dev: true
4712 |
4713 | /regexp.prototype.flags/1.4.3:
4714 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
4715 | engines: {node: '>= 0.4'}
4716 | dependencies:
4717 | call-bind: 1.0.2
4718 | define-properties: 1.1.4
4719 | functions-have-names: 1.2.3
4720 | dev: true
4721 |
4722 | /regexpp/3.2.0:
4723 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
4724 | engines: {node: '>=8'}
4725 | dev: true
4726 |
4727 | /regexpu-core/5.2.2:
4728 | resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==}
4729 | engines: {node: '>=4'}
4730 | dependencies:
4731 | regenerate: 1.4.2
4732 | regenerate-unicode-properties: 10.1.0
4733 | regjsgen: 0.7.1
4734 | regjsparser: 0.9.1
4735 | unicode-match-property-ecmascript: 2.0.0
4736 | unicode-match-property-value-ecmascript: 2.1.0
4737 | dev: true
4738 |
4739 | /regjsgen/0.7.1:
4740 | resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
4741 | dev: true
4742 |
4743 | /regjsparser/0.9.1:
4744 | resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
4745 | hasBin: true
4746 | dependencies:
4747 | jsesc: 0.5.0
4748 | dev: true
4749 |
4750 | /require-directory/2.1.1:
4751 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
4752 | engines: {node: '>=0.10.0'}
4753 | dev: true
4754 |
4755 | /resolve-from/4.0.0:
4756 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
4757 | engines: {node: '>=4'}
4758 | dev: true
4759 |
4760 | /resolve-from/5.0.0:
4761 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
4762 | engines: {node: '>=8'}
4763 | dev: true
4764 |
4765 | /resolve/1.22.1:
4766 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
4767 | hasBin: true
4768 | dependencies:
4769 | is-core-module: 2.11.0
4770 | path-parse: 1.0.7
4771 | supports-preserve-symlinks-flag: 1.0.0
4772 | dev: true
4773 |
4774 | /resolve/2.0.0-next.4:
4775 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
4776 | hasBin: true
4777 | dependencies:
4778 | is-core-module: 2.11.0
4779 | path-parse: 1.0.7
4780 | supports-preserve-symlinks-flag: 1.0.0
4781 | dev: true
4782 |
4783 | /reusify/1.0.4:
4784 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
4785 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
4786 | dev: true
4787 |
4788 | /rimraf/3.0.2:
4789 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
4790 | hasBin: true
4791 | dependencies:
4792 | glob: 7.2.3
4793 | dev: true
4794 |
4795 | /rollup-plugin-bundle-size/1.0.3:
4796 | resolution: {integrity: sha512-aWj0Pvzq90fqbI5vN1IvUrlf4utOqy+AERYxwWjegH1G8PzheMnrRIgQ5tkwKVtQMDP0bHZEACW/zLDF+XgfXQ==}
4797 | dependencies:
4798 | chalk: 1.1.3
4799 | maxmin: 2.1.0
4800 | dev: true
4801 |
4802 | /rollup-plugin-postcss/4.0.2_postcss@8.4.21:
4803 | resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==}
4804 | engines: {node: '>=10'}
4805 | peerDependencies:
4806 | postcss: 8.x
4807 | dependencies:
4808 | chalk: 4.1.2
4809 | concat-with-sourcemaps: 1.1.0
4810 | cssnano: 5.1.14_postcss@8.4.21
4811 | import-cwd: 3.0.0
4812 | p-queue: 6.6.2
4813 | pify: 5.0.0
4814 | postcss: 8.4.21
4815 | postcss-load-config: 3.1.4_postcss@8.4.21
4816 | postcss-modules: 4.3.1_postcss@8.4.21
4817 | promise.series: 0.2.0
4818 | resolve: 1.22.1
4819 | rollup-pluginutils: 2.8.2
4820 | safe-identifier: 0.4.2
4821 | style-inject: 0.3.0
4822 | transitivePeerDependencies:
4823 | - ts-node
4824 | dev: true
4825 |
4826 | /rollup-plugin-terser/7.0.2_rollup@2.79.1:
4827 | resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
4828 | deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
4829 | peerDependencies:
4830 | rollup: ^2.0.0
4831 | dependencies:
4832 | '@babel/code-frame': 7.18.6
4833 | jest-worker: 26.6.2
4834 | rollup: 2.79.1
4835 | serialize-javascript: 4.0.0
4836 | terser: 5.16.2
4837 | dev: true
4838 |
4839 | /rollup-plugin-typescript2/0.32.1_ntuob3xud5wukob6phfmz2mbyy:
4840 | resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==}
4841 | peerDependencies:
4842 | rollup: '>=1.26.3'
4843 | typescript: '>=2.4.0'
4844 | dependencies:
4845 | '@rollup/pluginutils': 4.2.1
4846 | find-cache-dir: 3.3.2
4847 | fs-extra: 10.1.0
4848 | resolve: 1.22.1
4849 | rollup: 2.79.1
4850 | tslib: 2.5.0
4851 | typescript: 4.9.4
4852 | dev: true
4853 |
4854 | /rollup-plugin-visualizer/5.9.0_rollup@2.79.1:
4855 | resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==}
4856 | engines: {node: '>=14'}
4857 | hasBin: true
4858 | peerDependencies:
4859 | rollup: 2.x || 3.x
4860 | peerDependenciesMeta:
4861 | rollup:
4862 | optional: true
4863 | dependencies:
4864 | open: 8.4.0
4865 | picomatch: 2.3.1
4866 | rollup: 2.79.1
4867 | source-map: 0.7.4
4868 | yargs: 17.6.2
4869 | dev: true
4870 |
4871 | /rollup-pluginutils/2.8.2:
4872 | resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
4873 | dependencies:
4874 | estree-walker: 0.6.1
4875 | dev: true
4876 |
4877 | /rollup/2.79.1:
4878 | resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
4879 | engines: {node: '>=10.0.0'}
4880 | hasBin: true
4881 | optionalDependencies:
4882 | fsevents: 2.3.2
4883 | dev: true
4884 |
4885 | /rollup/3.10.1:
4886 | resolution: {integrity: sha512-3Er+yel3bZbZX1g2kjVM+FW+RUWDxbG87fcqFM5/9HbPCTpbVp6JOLn7jlxnNlbu7s/N/uDA4EV/91E2gWnxzw==}
4887 | engines: {node: '>=14.18.0', npm: '>=8.0.0'}
4888 | hasBin: true
4889 | optionalDependencies:
4890 | fsevents: 2.3.2
4891 | dev: true
4892 |
4893 | /run-parallel/1.2.0:
4894 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
4895 | dependencies:
4896 | queue-microtask: 1.2.3
4897 | dev: true
4898 |
4899 | /sade/1.8.1:
4900 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
4901 | engines: {node: '>=6'}
4902 | dependencies:
4903 | mri: 1.2.0
4904 | dev: true
4905 |
4906 | /safe-buffer/5.1.2:
4907 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
4908 | dev: true
4909 |
4910 | /safe-identifier/0.4.2:
4911 | resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==}
4912 | dev: true
4913 |
4914 | /safe-regex-test/1.0.0:
4915 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
4916 | dependencies:
4917 | call-bind: 1.0.2
4918 | get-intrinsic: 1.2.0
4919 | is-regex: 1.1.4
4920 | dev: true
4921 |
4922 | /semver/5.7.1:
4923 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
4924 | hasBin: true
4925 | dev: true
4926 |
4927 | /semver/6.3.0:
4928 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
4929 | hasBin: true
4930 | dev: true
4931 |
4932 | /semver/7.3.8:
4933 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
4934 | engines: {node: '>=10'}
4935 | hasBin: true
4936 | dependencies:
4937 | lru-cache: 6.0.0
4938 | dev: true
4939 |
4940 | /serialize-javascript/4.0.0:
4941 | resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
4942 | dependencies:
4943 | randombytes: 2.1.0
4944 | dev: true
4945 |
4946 | /shebang-command/1.2.0:
4947 | resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
4948 | engines: {node: '>=0.10.0'}
4949 | dependencies:
4950 | shebang-regex: 1.0.0
4951 | dev: true
4952 |
4953 | /shebang-command/2.0.0:
4954 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
4955 | engines: {node: '>=8'}
4956 | dependencies:
4957 | shebang-regex: 3.0.0
4958 | dev: true
4959 |
4960 | /shebang-regex/1.0.0:
4961 | resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
4962 | engines: {node: '>=0.10.0'}
4963 | dev: true
4964 |
4965 | /shebang-regex/3.0.0:
4966 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
4967 | engines: {node: '>=8'}
4968 | dev: true
4969 |
4970 | /shell-quote/1.7.4:
4971 | resolution: {integrity: sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==}
4972 | dev: true
4973 |
4974 | /side-channel/1.0.4:
4975 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
4976 | dependencies:
4977 | call-bind: 1.0.2
4978 | get-intrinsic: 1.2.0
4979 | object-inspect: 1.12.3
4980 | dev: true
4981 |
4982 | /size-limit/8.1.2:
4983 | resolution: {integrity: sha512-/EfKz9I/K2ouBN+BcrTX2WiaPTOX5yiCXtM07jYpuVtyzX9r4FDUsuCq13nNmoWqRFYbtH/7wqgRLvF40AGKoQ==}
4984 | engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
4985 | hasBin: true
4986 | dependencies:
4987 | bytes-iec: 3.1.1
4988 | chokidar: 3.5.3
4989 | globby: 11.1.0
4990 | lilconfig: 2.0.6
4991 | nanospinner: 1.1.0
4992 | picocolors: 1.0.0
4993 | dev: true
4994 |
4995 | /slash/3.0.0:
4996 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
4997 | engines: {node: '>=8'}
4998 | dev: true
4999 |
5000 | /source-map-js/1.0.2:
5001 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
5002 | engines: {node: '>=0.10.0'}
5003 | dev: true
5004 |
5005 | /source-map-support/0.5.21:
5006 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
5007 | dependencies:
5008 | buffer-from: 1.1.2
5009 | source-map: 0.6.1
5010 | dev: true
5011 |
5012 | /source-map/0.6.1:
5013 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
5014 | engines: {node: '>=0.10.0'}
5015 | dev: true
5016 |
5017 | /source-map/0.7.4:
5018 | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
5019 | engines: {node: '>= 8'}
5020 | dev: true
5021 |
5022 | /sourcemap-codec/1.4.8:
5023 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
5024 | deprecated: Please use @jridgewell/sourcemap-codec instead
5025 | dev: true
5026 |
5027 | /spdx-correct/3.1.1:
5028 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
5029 | dependencies:
5030 | spdx-expression-parse: 3.0.1
5031 | spdx-license-ids: 3.0.12
5032 | dev: true
5033 |
5034 | /spdx-exceptions/2.3.0:
5035 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
5036 | dev: true
5037 |
5038 | /spdx-expression-parse/3.0.1:
5039 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
5040 | dependencies:
5041 | spdx-exceptions: 2.3.0
5042 | spdx-license-ids: 3.0.12
5043 | dev: true
5044 |
5045 | /spdx-license-ids/3.0.12:
5046 | resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==}
5047 | dev: true
5048 |
5049 | /stable/0.1.8:
5050 | resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
5051 | 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'
5052 | dev: true
5053 |
5054 | /string-hash/1.1.3:
5055 | resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
5056 | dev: true
5057 |
5058 | /string-width/4.2.3:
5059 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
5060 | engines: {node: '>=8'}
5061 | dependencies:
5062 | emoji-regex: 8.0.0
5063 | is-fullwidth-code-point: 3.0.0
5064 | strip-ansi: 6.0.1
5065 | dev: true
5066 |
5067 | /string.prototype.matchall/4.0.8:
5068 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
5069 | dependencies:
5070 | call-bind: 1.0.2
5071 | define-properties: 1.1.4
5072 | es-abstract: 1.21.1
5073 | get-intrinsic: 1.2.0
5074 | has-symbols: 1.0.3
5075 | internal-slot: 1.0.4
5076 | regexp.prototype.flags: 1.4.3
5077 | side-channel: 1.0.4
5078 | dev: true
5079 |
5080 | /string.prototype.padend/3.1.4:
5081 | resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==}
5082 | engines: {node: '>= 0.4'}
5083 | dependencies:
5084 | call-bind: 1.0.2
5085 | define-properties: 1.1.4
5086 | es-abstract: 1.21.1
5087 | dev: true
5088 |
5089 | /string.prototype.trimend/1.0.6:
5090 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
5091 | dependencies:
5092 | call-bind: 1.0.2
5093 | define-properties: 1.1.4
5094 | es-abstract: 1.21.1
5095 | dev: true
5096 |
5097 | /string.prototype.trimstart/1.0.6:
5098 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
5099 | dependencies:
5100 | call-bind: 1.0.2
5101 | define-properties: 1.1.4
5102 | es-abstract: 1.21.1
5103 | dev: true
5104 |
5105 | /strip-ansi/3.0.1:
5106 | resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
5107 | engines: {node: '>=0.10.0'}
5108 | dependencies:
5109 | ansi-regex: 2.1.1
5110 | dev: true
5111 |
5112 | /strip-ansi/6.0.1:
5113 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
5114 | engines: {node: '>=8'}
5115 | dependencies:
5116 | ansi-regex: 5.0.1
5117 | dev: true
5118 |
5119 | /strip-bom/3.0.0:
5120 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
5121 | engines: {node: '>=4'}
5122 | dev: true
5123 |
5124 | /strip-json-comments/3.1.1:
5125 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
5126 | engines: {node: '>=8'}
5127 | dev: true
5128 |
5129 | /style-inject/0.3.0:
5130 | resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==}
5131 | dev: true
5132 |
5133 | /stylehacks/5.1.1_postcss@8.4.21:
5134 | resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
5135 | engines: {node: ^10 || ^12 || >=14.0}
5136 | peerDependencies:
5137 | postcss: ^8.2.15
5138 | dependencies:
5139 | browserslist: 4.21.5
5140 | postcss: 8.4.21
5141 | postcss-selector-parser: 6.0.11
5142 | dev: true
5143 |
5144 | /supports-color/2.0.0:
5145 | resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
5146 | engines: {node: '>=0.8.0'}
5147 | dev: true
5148 |
5149 | /supports-color/5.5.0:
5150 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
5151 | engines: {node: '>=4'}
5152 | dependencies:
5153 | has-flag: 3.0.0
5154 | dev: true
5155 |
5156 | /supports-color/7.2.0:
5157 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
5158 | engines: {node: '>=8'}
5159 | dependencies:
5160 | has-flag: 4.0.0
5161 | dev: true
5162 |
5163 | /supports-preserve-symlinks-flag/1.0.0:
5164 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
5165 | engines: {node: '>= 0.4'}
5166 | dev: true
5167 |
5168 | /svgo/2.8.0:
5169 | resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
5170 | engines: {node: '>=10.13.0'}
5171 | hasBin: true
5172 | dependencies:
5173 | '@trysound/sax': 0.2.0
5174 | commander: 7.2.0
5175 | css-select: 4.3.0
5176 | css-tree: 1.1.3
5177 | csso: 4.2.0
5178 | picocolors: 1.0.0
5179 | stable: 0.1.8
5180 | dev: true
5181 |
5182 | /terser/5.16.2:
5183 | resolution: {integrity: sha512-JKuM+KvvWVqT7muHVyrwv7FVRPnmHDwF6XwoIxdbF5Witi0vu99RYpxDexpJndXt3jbZZmmWr2/mQa6HvSNdSg==}
5184 | engines: {node: '>=10'}
5185 | hasBin: true
5186 | dependencies:
5187 | '@jridgewell/source-map': 0.3.2
5188 | acorn: 8.8.2
5189 | commander: 2.20.3
5190 | source-map-support: 0.5.21
5191 | dev: true
5192 |
5193 | /text-table/0.2.0:
5194 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
5195 | dev: true
5196 |
5197 | /tiny-glob/0.2.9:
5198 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
5199 | dependencies:
5200 | globalyzer: 0.1.0
5201 | globrex: 0.1.2
5202 | dev: true
5203 |
5204 | /to-fast-properties/2.0.0:
5205 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
5206 | engines: {node: '>=4'}
5207 | dev: true
5208 |
5209 | /to-regex-range/5.0.1:
5210 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
5211 | engines: {node: '>=8.0'}
5212 | dependencies:
5213 | is-number: 7.0.0
5214 | dev: true
5215 |
5216 | /tsconfig-paths/3.14.1:
5217 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
5218 | dependencies:
5219 | '@types/json5': 0.0.29
5220 | json5: 1.0.2
5221 | minimist: 1.2.7
5222 | strip-bom: 3.0.0
5223 | dev: true
5224 |
5225 | /tslib/2.5.0:
5226 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
5227 | dev: true
5228 |
5229 | /type-check/0.4.0:
5230 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
5231 | engines: {node: '>= 0.8.0'}
5232 | dependencies:
5233 | prelude-ls: 1.2.1
5234 | dev: true
5235 |
5236 | /type-fest/0.20.2:
5237 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
5238 | engines: {node: '>=10'}
5239 | dev: true
5240 |
5241 | /typed-array-length/1.0.4:
5242 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
5243 | dependencies:
5244 | call-bind: 1.0.2
5245 | for-each: 0.3.3
5246 | is-typed-array: 1.1.10
5247 | dev: true
5248 |
5249 | /typescript/4.9.4:
5250 | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
5251 | engines: {node: '>=4.2.0'}
5252 | hasBin: true
5253 | dev: true
5254 |
5255 | /unbox-primitive/1.0.2:
5256 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
5257 | dependencies:
5258 | call-bind: 1.0.2
5259 | has-bigints: 1.0.2
5260 | has-symbols: 1.0.3
5261 | which-boxed-primitive: 1.0.2
5262 | dev: true
5263 |
5264 | /unicode-canonical-property-names-ecmascript/2.0.0:
5265 | resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
5266 | engines: {node: '>=4'}
5267 | dev: true
5268 |
5269 | /unicode-match-property-ecmascript/2.0.0:
5270 | resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
5271 | engines: {node: '>=4'}
5272 | dependencies:
5273 | unicode-canonical-property-names-ecmascript: 2.0.0
5274 | unicode-property-aliases-ecmascript: 2.1.0
5275 | dev: true
5276 |
5277 | /unicode-match-property-value-ecmascript/2.1.0:
5278 | resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
5279 | engines: {node: '>=4'}
5280 | dev: true
5281 |
5282 | /unicode-property-aliases-ecmascript/2.1.0:
5283 | resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
5284 | engines: {node: '>=4'}
5285 | dev: true
5286 |
5287 | /universalify/2.0.0:
5288 | resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
5289 | engines: {node: '>= 10.0.0'}
5290 | dev: true
5291 |
5292 | /update-browserslist-db/1.0.10_browserslist@4.21.5:
5293 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
5294 | hasBin: true
5295 | peerDependencies:
5296 | browserslist: '>= 4.21.0'
5297 | dependencies:
5298 | browserslist: 4.21.5
5299 | escalade: 3.1.1
5300 | picocolors: 1.0.0
5301 | dev: true
5302 |
5303 | /uri-js/4.4.1:
5304 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
5305 | dependencies:
5306 | punycode: 2.3.0
5307 | dev: true
5308 |
5309 | /util-deprecate/1.0.2:
5310 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
5311 | dev: true
5312 |
5313 | /validate-npm-package-license/3.0.4:
5314 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
5315 | dependencies:
5316 | spdx-correct: 3.1.1
5317 | spdx-expression-parse: 3.0.1
5318 | dev: true
5319 |
5320 | /vite/4.0.4:
5321 | resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
5322 | engines: {node: ^14.18.0 || >=16.0.0}
5323 | hasBin: true
5324 | peerDependencies:
5325 | '@types/node': '>= 14'
5326 | less: '*'
5327 | sass: '*'
5328 | stylus: '*'
5329 | sugarss: '*'
5330 | terser: ^5.4.0
5331 | peerDependenciesMeta:
5332 | '@types/node':
5333 | optional: true
5334 | less:
5335 | optional: true
5336 | sass:
5337 | optional: true
5338 | stylus:
5339 | optional: true
5340 | sugarss:
5341 | optional: true
5342 | terser:
5343 | optional: true
5344 | dependencies:
5345 | esbuild: 0.16.17
5346 | postcss: 8.4.21
5347 | resolve: 1.22.1
5348 | rollup: 3.10.1
5349 | optionalDependencies:
5350 | fsevents: 2.3.2
5351 | dev: true
5352 |
5353 | /which-boxed-primitive/1.0.2:
5354 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
5355 | dependencies:
5356 | is-bigint: 1.0.4
5357 | is-boolean-object: 1.1.2
5358 | is-number-object: 1.0.7
5359 | is-string: 1.0.7
5360 | is-symbol: 1.0.4
5361 | dev: true
5362 |
5363 | /which-typed-array/1.1.9:
5364 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
5365 | engines: {node: '>= 0.4'}
5366 | dependencies:
5367 | available-typed-arrays: 1.0.5
5368 | call-bind: 1.0.2
5369 | for-each: 0.3.3
5370 | gopd: 1.0.1
5371 | has-tostringtag: 1.0.0
5372 | is-typed-array: 1.1.10
5373 | dev: true
5374 |
5375 | /which/1.3.1:
5376 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
5377 | hasBin: true
5378 | dependencies:
5379 | isexe: 2.0.0
5380 | dev: true
5381 |
5382 | /which/2.0.2:
5383 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
5384 | engines: {node: '>= 8'}
5385 | hasBin: true
5386 | dependencies:
5387 | isexe: 2.0.0
5388 | dev: true
5389 |
5390 | /word-wrap/1.2.3:
5391 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
5392 | engines: {node: '>=0.10.0'}
5393 | dev: true
5394 |
5395 | /wrap-ansi/7.0.0:
5396 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
5397 | engines: {node: '>=10'}
5398 | dependencies:
5399 | ansi-styles: 4.3.0
5400 | string-width: 4.2.3
5401 | strip-ansi: 6.0.1
5402 | dev: true
5403 |
5404 | /wrappy/1.0.2:
5405 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
5406 | dev: true
5407 |
5408 | /y18n/5.0.8:
5409 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
5410 | engines: {node: '>=10'}
5411 | dev: true
5412 |
5413 | /yallist/3.1.1:
5414 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
5415 | dev: true
5416 |
5417 | /yallist/4.0.0:
5418 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
5419 | dev: true
5420 |
5421 | /yaml/1.10.2:
5422 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
5423 | engines: {node: '>= 6'}
5424 | dev: true
5425 |
5426 | /yargs-parser/21.1.1:
5427 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
5428 | engines: {node: '>=12'}
5429 | dev: true
5430 |
5431 | /yargs/17.6.2:
5432 | resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==}
5433 | engines: {node: '>=12'}
5434 | dependencies:
5435 | cliui: 8.0.1
5436 | escalade: 3.1.1
5437 | get-caller-file: 2.0.5
5438 | require-directory: 2.1.1
5439 | string-width: 4.2.3
5440 | y18n: 5.0.8
5441 | yargs-parser: 21.1.1
5442 | dev: true
5443 |
5444 | /yocto-queue/0.1.0:
5445 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
5446 | engines: {node: '>=10'}
5447 | dev: true
5448 |
--------------------------------------------------------------------------------