├── .env
├── .eslintrc.cjs
├── .gitignore
├── config
├── hackaforProjects.json
└── talks.json
├── customHooks
└── useFetch.js
├── index.html
├── package.json
├── pnpm-lock.yaml
├── public
├── logo.png
└── svgs
│ ├── AntDesignAlertOutlined.svg
│ ├── CarbonAiStatusFailed.svg
│ ├── IconParkTwotoneAlignBottomTwo.svg
│ ├── MdiFaceWomanShimmerOutline.svg
│ ├── StreamlineLegalJusticeHammerHammerWorkLegalMalletOfficeCompanyGavelJusticeJudgeArbitrationCourt.svg
│ ├── StreamlineTravelPlacesTheaterMaskHobbyTheaterMasksDramaEventShowEntertainment.svg
│ └── burger-svgrepo-com.svg
├── src
├── App.css
├── App.tsx
├── assets
│ └── react.svg
├── components
│ ├── Community.tsx
│ ├── InternalNav.tsx
│ ├── MainScreen.tsx
│ ├── Nav.tsx
│ ├── NavMobile.tsx
│ ├── Projects.tsx
│ ├── Streams.tsx
│ ├── Talks.tsx
│ └── common
│ │ ├── CardPulse.tsx
│ │ ├── CardPulseStreams.tsx
│ │ ├── CardPulseTalks.tsx
│ │ ├── CustomLink.tsx
│ │ └── IconLink.tsx
├── interfaces
│ └── interface.ts
├── main.tsx
└── vite-env.d.ts
├── tsconfig.json
├── tsconfig.node.json
├── uno.config.ts
└── vite.config.ts
/.env:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afordigital/personal-web/111919159fde9682fbb1838e85f61108fd295b48/.env
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | /* eslint-env node */
2 |
3 | module.exports = {
4 | root: true,
5 | env: { browser: true, es2020: true },
6 | extends: [
7 | 'eslint:recommended',
8 | 'plugin:@typescript-eslint/recommended',
9 | 'plugin:@typescript-eslint/recommended-requiring-type-checking',
10 | 'plugin:react-hooks/recommended',
11 | '@unocss'
12 | ],
13 | parser: '@typescript-eslint/parser',
14 | parserOptions: {
15 | ecmaVersion: 'latest',
16 | sourceType: 'module',
17 | project: true,
18 | tsconfigRootDir: __dirname
19 | },
20 | plugins: ['react-refresh'],
21 | rules: {
22 | 'react-refresh/only-export-components': [
23 | 'warn',
24 | { allowConstantExport: true }
25 | ],
26 | '@typescript-eslint/no-non-null-assertion': 'off'
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/.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 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 | .vercel
26 |
--------------------------------------------------------------------------------
/config/hackaforProjects.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "name": "Afordibot",
4 | "description": "",
5 | "url": "https://github.com/Afordin/afordibot"
6 | },
7 | {
8 | "name": "project-hackathon",
9 | "description": "🌻 An open-source hackathon management. Hackafor February 2023.",
10 | "url": "https://github.com/pheralb/project-hackathon"
11 | },
12 | {
13 | "name": "quackboard",
14 | "description": "Duck piano for ducks by ducks",
15 | "url": "https://github.com/Afordin/quackboard"
16 | }
17 | ]
18 |
--------------------------------------------------------------------------------
/config/talks.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "name": "Abrazando al fracaso",
4 | "description": "Talk about frustration when starting to program and how to use it as a motivational engine.",
5 | "url": "https://www.youtube.com/watch?v=QIswLNnncLc"
6 | },
7 | {
8 | "name": "Síndrome de la impostora",
9 | "description": "Talk on what the impostor syndrome is and how to overcome it from a psychological point of view.",
10 | "url": "https://www.youtube.com/watch?v=-3IIbfb6yEw"
11 | },
12 | {
13 | "name": "Junior vs. Senior",
14 | "description": "Talk with Carlos Azaustre on the expectations of a junior to a senior and vice versa. Talk for improving your soft skills",
15 | "url": "https://www.youtube.com/watch?v=tkBVmeEMpzI"
16 | }
17 | ]
18 |
--------------------------------------------------------------------------------
/customHooks/useFetch.js:
--------------------------------------------------------------------------------
1 | import { useState, useEffect } from 'react'
2 |
3 | export function useFetch (url, userToken, segmentAction, segmentData) {
4 | const [data, setData] = useState(null)
5 | const [error, setError] = useState(null)
6 |
7 | useEffect(() => {
8 | getData()
9 | async function getData () {
10 | const res = await fetch(url, {
11 | method: 'POST',
12 | headers: {
13 | Authorization: userToken,
14 | 'Content-Type': 'application/json'
15 | },
16 | body: JSON.stringify({ action: segmentAction, data: segmentData })
17 | }).catch(err => {
18 | setError(true)
19 | })
20 | const parseRes = await res.json()
21 |
22 | if (parseRes) {
23 | setData(parseRes.data)
24 | } else {
25 | setError(true)
26 | }
27 |
28 | return parseRes ? parseRes.data : null
29 | }
30 | }, [url])
31 |
32 | return { data, error }
33 | }
34 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Sara Montagud
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "personal-web",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "tsc && vite build",
9 | "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10 | "preview": "vite preview"
11 | },
12 | "dependencies": {
13 | "framer-motion": "^10.12.18",
14 | "lucide-react": "^0.259.0",
15 | "react": "^18.2.0",
16 | "react-dom": "^18.2.0",
17 | "wouter": "^2.11.0"
18 | },
19 | "devDependencies": {
20 | "@types/node": "^20.4.1",
21 | "@types/react": "^18.2.14",
22 | "@types/react-dom": "^18.2.6",
23 | "@typescript-eslint/eslint-plugin": "^5.61.0",
24 | "@typescript-eslint/parser": "^5.61.0",
25 | "@unocss/eslint-config": "^0.53.5",
26 | "@vitejs/plugin-react": "^4.0.1",
27 | "eslint": "^8.44.0",
28 | "eslint-plugin-react-hooks": "^4.6.0",
29 | "eslint-plugin-react-refresh": "^0.4.1",
30 | "typescript": "^5.0.2",
31 | "unocss": "^0.53.5",
32 | "vite": "^4.4.0"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | dependencies:
8 | framer-motion:
9 | specifier: ^10.12.18
10 | version: 10.12.18(react-dom@18.2.0)(react@18.2.0)
11 | lucide-react:
12 | specifier: ^0.259.0
13 | version: 0.259.0(react@18.2.0)
14 | react:
15 | specifier: ^18.2.0
16 | version: 18.2.0
17 | react-dom:
18 | specifier: ^18.2.0
19 | version: 18.2.0(react@18.2.0)
20 | wouter:
21 | specifier: ^2.11.0
22 | version: 2.11.0(react@18.2.0)
23 |
24 | devDependencies:
25 | '@types/node':
26 | specifier: ^20.4.1
27 | version: 20.4.1
28 | '@types/react':
29 | specifier: ^18.2.14
30 | version: 18.2.14
31 | '@types/react-dom':
32 | specifier: ^18.2.6
33 | version: 18.2.6
34 | '@typescript-eslint/eslint-plugin':
35 | specifier: ^5.61.0
36 | version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6)
37 | '@typescript-eslint/parser':
38 | specifier: ^5.61.0
39 | version: 5.61.0(eslint@8.44.0)(typescript@5.1.6)
40 | '@unocss/eslint-config':
41 | specifier: ^0.53.5
42 | version: 0.53.5(eslint@8.44.0)(typescript@5.1.6)
43 | '@vitejs/plugin-react':
44 | specifier: ^4.0.1
45 | version: 4.0.3(vite@4.4.2)
46 | eslint:
47 | specifier: ^8.44.0
48 | version: 8.44.0
49 | eslint-plugin-react-hooks:
50 | specifier: ^4.6.0
51 | version: 4.6.0(eslint@8.44.0)
52 | eslint-plugin-react-refresh:
53 | specifier: ^0.4.1
54 | version: 0.4.3(eslint@8.44.0)
55 | typescript:
56 | specifier: ^5.0.2
57 | version: 5.1.6
58 | unocss:
59 | specifier: ^0.53.5
60 | version: 0.53.5(postcss@8.4.25)(vite@4.4.2)
61 | vite:
62 | specifier: ^4.4.0
63 | version: 4.4.2(@types/node@20.4.1)
64 |
65 | packages:
66 |
67 | /@aashutoshrathi/word-wrap@1.2.6:
68 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
69 | engines: {node: '>=0.10.0'}
70 | dev: true
71 |
72 | /@ampproject/remapping@2.2.1:
73 | resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
74 | engines: {node: '>=6.0.0'}
75 | dependencies:
76 | '@jridgewell/gen-mapping': 0.3.3
77 | '@jridgewell/trace-mapping': 0.3.18
78 | dev: true
79 |
80 | /@antfu/install-pkg@0.1.1:
81 | resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
82 | dependencies:
83 | execa: 5.1.1
84 | find-up: 5.0.0
85 | dev: true
86 |
87 | /@antfu/utils@0.7.5:
88 | resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==}
89 | dev: true
90 |
91 | /@babel/code-frame@7.22.5:
92 | resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
93 | engines: {node: '>=6.9.0'}
94 | dependencies:
95 | '@babel/highlight': 7.22.5
96 | dev: true
97 |
98 | /@babel/compat-data@7.22.6:
99 | resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==}
100 | engines: {node: '>=6.9.0'}
101 | dev: true
102 |
103 | /@babel/core@7.22.8:
104 | resolution: {integrity: sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==}
105 | engines: {node: '>=6.9.0'}
106 | dependencies:
107 | '@ampproject/remapping': 2.2.1
108 | '@babel/code-frame': 7.22.5
109 | '@babel/generator': 7.22.7
110 | '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.8)
111 | '@babel/helper-module-transforms': 7.22.5
112 | '@babel/helpers': 7.22.6
113 | '@babel/parser': 7.22.7
114 | '@babel/template': 7.22.5
115 | '@babel/traverse': 7.22.8
116 | '@babel/types': 7.22.5
117 | '@nicolo-ribaudo/semver-v6': 6.3.3
118 | convert-source-map: 1.9.0
119 | debug: 4.3.4
120 | gensync: 1.0.0-beta.2
121 | json5: 2.2.3
122 | transitivePeerDependencies:
123 | - supports-color
124 | dev: true
125 |
126 | /@babel/generator@7.22.7:
127 | resolution: {integrity: sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==}
128 | engines: {node: '>=6.9.0'}
129 | dependencies:
130 | '@babel/types': 7.22.5
131 | '@jridgewell/gen-mapping': 0.3.3
132 | '@jridgewell/trace-mapping': 0.3.18
133 | jsesc: 2.5.2
134 | dev: true
135 |
136 | /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.8):
137 | resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==}
138 | engines: {node: '>=6.9.0'}
139 | peerDependencies:
140 | '@babel/core': ^7.0.0
141 | dependencies:
142 | '@babel/compat-data': 7.22.6
143 | '@babel/core': 7.22.8
144 | '@babel/helper-validator-option': 7.22.5
145 | '@nicolo-ribaudo/semver-v6': 6.3.3
146 | browserslist: 4.21.9
147 | lru-cache: 5.1.1
148 | dev: true
149 |
150 | /@babel/helper-environment-visitor@7.22.5:
151 | resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
152 | engines: {node: '>=6.9.0'}
153 | dev: true
154 |
155 | /@babel/helper-function-name@7.22.5:
156 | resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
157 | engines: {node: '>=6.9.0'}
158 | dependencies:
159 | '@babel/template': 7.22.5
160 | '@babel/types': 7.22.5
161 | dev: true
162 |
163 | /@babel/helper-hoist-variables@7.22.5:
164 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
165 | engines: {node: '>=6.9.0'}
166 | dependencies:
167 | '@babel/types': 7.22.5
168 | dev: true
169 |
170 | /@babel/helper-module-imports@7.22.5:
171 | resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
172 | engines: {node: '>=6.9.0'}
173 | dependencies:
174 | '@babel/types': 7.22.5
175 | dev: true
176 |
177 | /@babel/helper-module-transforms@7.22.5:
178 | resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==}
179 | engines: {node: '>=6.9.0'}
180 | dependencies:
181 | '@babel/helper-environment-visitor': 7.22.5
182 | '@babel/helper-module-imports': 7.22.5
183 | '@babel/helper-simple-access': 7.22.5
184 | '@babel/helper-split-export-declaration': 7.22.6
185 | '@babel/helper-validator-identifier': 7.22.5
186 | '@babel/template': 7.22.5
187 | '@babel/traverse': 7.22.8
188 | '@babel/types': 7.22.5
189 | transitivePeerDependencies:
190 | - supports-color
191 | dev: true
192 |
193 | /@babel/helper-plugin-utils@7.22.5:
194 | resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
195 | engines: {node: '>=6.9.0'}
196 | dev: true
197 |
198 | /@babel/helper-simple-access@7.22.5:
199 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
200 | engines: {node: '>=6.9.0'}
201 | dependencies:
202 | '@babel/types': 7.22.5
203 | dev: true
204 |
205 | /@babel/helper-split-export-declaration@7.22.6:
206 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
207 | engines: {node: '>=6.9.0'}
208 | dependencies:
209 | '@babel/types': 7.22.5
210 | dev: true
211 |
212 | /@babel/helper-string-parser@7.22.5:
213 | resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
214 | engines: {node: '>=6.9.0'}
215 | dev: true
216 |
217 | /@babel/helper-validator-identifier@7.22.5:
218 | resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
219 | engines: {node: '>=6.9.0'}
220 | dev: true
221 |
222 | /@babel/helper-validator-option@7.22.5:
223 | resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
224 | engines: {node: '>=6.9.0'}
225 | dev: true
226 |
227 | /@babel/helpers@7.22.6:
228 | resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
229 | engines: {node: '>=6.9.0'}
230 | dependencies:
231 | '@babel/template': 7.22.5
232 | '@babel/traverse': 7.22.8
233 | '@babel/types': 7.22.5
234 | transitivePeerDependencies:
235 | - supports-color
236 | dev: true
237 |
238 | /@babel/highlight@7.22.5:
239 | resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
240 | engines: {node: '>=6.9.0'}
241 | dependencies:
242 | '@babel/helper-validator-identifier': 7.22.5
243 | chalk: 2.4.2
244 | js-tokens: 4.0.0
245 | dev: true
246 |
247 | /@babel/parser@7.22.7:
248 | resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
249 | engines: {node: '>=6.0.0'}
250 | hasBin: true
251 | dependencies:
252 | '@babel/types': 7.22.5
253 | dev: true
254 |
255 | /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.8):
256 | resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
257 | engines: {node: '>=6.9.0'}
258 | peerDependencies:
259 | '@babel/core': ^7.0.0-0
260 | dependencies:
261 | '@babel/core': 7.22.8
262 | '@babel/helper-plugin-utils': 7.22.5
263 | dev: true
264 |
265 | /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.8):
266 | resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
267 | engines: {node: '>=6.9.0'}
268 | peerDependencies:
269 | '@babel/core': ^7.0.0-0
270 | dependencies:
271 | '@babel/core': 7.22.8
272 | '@babel/helper-plugin-utils': 7.22.5
273 | dev: true
274 |
275 | /@babel/template@7.22.5:
276 | resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
277 | engines: {node: '>=6.9.0'}
278 | dependencies:
279 | '@babel/code-frame': 7.22.5
280 | '@babel/parser': 7.22.7
281 | '@babel/types': 7.22.5
282 | dev: true
283 |
284 | /@babel/traverse@7.22.8:
285 | resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
286 | engines: {node: '>=6.9.0'}
287 | dependencies:
288 | '@babel/code-frame': 7.22.5
289 | '@babel/generator': 7.22.7
290 | '@babel/helper-environment-visitor': 7.22.5
291 | '@babel/helper-function-name': 7.22.5
292 | '@babel/helper-hoist-variables': 7.22.5
293 | '@babel/helper-split-export-declaration': 7.22.6
294 | '@babel/parser': 7.22.7
295 | '@babel/types': 7.22.5
296 | debug: 4.3.4
297 | globals: 11.12.0
298 | transitivePeerDependencies:
299 | - supports-color
300 | dev: true
301 |
302 | /@babel/types@7.22.5:
303 | resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
304 | engines: {node: '>=6.9.0'}
305 | dependencies:
306 | '@babel/helper-string-parser': 7.22.5
307 | '@babel/helper-validator-identifier': 7.22.5
308 | to-fast-properties: 2.0.0
309 | dev: true
310 |
311 | /@emotion/is-prop-valid@0.8.8:
312 | resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
313 | requiresBuild: true
314 | dependencies:
315 | '@emotion/memoize': 0.7.4
316 | dev: false
317 | optional: true
318 |
319 | /@emotion/memoize@0.7.4:
320 | resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
321 | requiresBuild: true
322 | dev: false
323 | optional: true
324 |
325 | /@esbuild/android-arm64@0.18.11:
326 | resolution: {integrity: sha512-snieiq75Z1z5LJX9cduSAjUr7vEI1OdlzFPMw0HH5YI7qQHDd3qs+WZoMrWYDsfRJSq36lIA6mfZBkvL46KoIw==}
327 | engines: {node: '>=12'}
328 | cpu: [arm64]
329 | os: [android]
330 | requiresBuild: true
331 | dev: true
332 | optional: true
333 |
334 | /@esbuild/android-arm@0.18.11:
335 | resolution: {integrity: sha512-q4qlUf5ucwbUJZXF5tEQ8LF7y0Nk4P58hOsGk3ucY0oCwgQqAnqXVbUuahCddVHfrxmpyewRpiTHwVHIETYu7Q==}
336 | engines: {node: '>=12'}
337 | cpu: [arm]
338 | os: [android]
339 | requiresBuild: true
340 | dev: true
341 | optional: true
342 |
343 | /@esbuild/android-x64@0.18.11:
344 | resolution: {integrity: sha512-iPuoxQEV34+hTF6FT7om+Qwziv1U519lEOvekXO9zaMMlT9+XneAhKL32DW3H7okrCOBQ44BMihE8dclbZtTuw==}
345 | engines: {node: '>=12'}
346 | cpu: [x64]
347 | os: [android]
348 | requiresBuild: true
349 | dev: true
350 | optional: true
351 |
352 | /@esbuild/darwin-arm64@0.18.11:
353 | resolution: {integrity: sha512-Gm0QkI3k402OpfMKyQEEMG0RuW2LQsSmI6OeO4El2ojJMoF5NLYb3qMIjvbG/lbMeLOGiW6ooU8xqc+S0fgz2w==}
354 | engines: {node: '>=12'}
355 | cpu: [arm64]
356 | os: [darwin]
357 | requiresBuild: true
358 | dev: true
359 | optional: true
360 |
361 | /@esbuild/darwin-x64@0.18.11:
362 | resolution: {integrity: sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw==}
363 | engines: {node: '>=12'}
364 | cpu: [x64]
365 | os: [darwin]
366 | requiresBuild: true
367 | dev: true
368 | optional: true
369 |
370 | /@esbuild/freebsd-arm64@0.18.11:
371 | resolution: {integrity: sha512-atEyuq6a3omEY5qAh5jIORWk8MzFnCpSTUruBgeyN9jZq1K/QI9uke0ATi3MHu4L8c59CnIi4+1jDKMuqmR71A==}
372 | engines: {node: '>=12'}
373 | cpu: [arm64]
374 | os: [freebsd]
375 | requiresBuild: true
376 | dev: true
377 | optional: true
378 |
379 | /@esbuild/freebsd-x64@0.18.11:
380 | resolution: {integrity: sha512-XtuPrEfBj/YYYnAAB7KcorzzpGTvOr/dTtXPGesRfmflqhA4LMF0Gh/n5+a9JBzPuJ+CGk17CA++Hmr1F/gI0Q==}
381 | engines: {node: '>=12'}
382 | cpu: [x64]
383 | os: [freebsd]
384 | requiresBuild: true
385 | dev: true
386 | optional: true
387 |
388 | /@esbuild/linux-arm64@0.18.11:
389 | resolution: {integrity: sha512-c6Vh2WS9VFKxKZ2TvJdA7gdy0n6eSy+yunBvv4aqNCEhSWVor1TU43wNRp2YLO9Vng2G+W94aRz+ILDSwAiYog==}
390 | engines: {node: '>=12'}
391 | cpu: [arm64]
392 | os: [linux]
393 | requiresBuild: true
394 | dev: true
395 | optional: true
396 |
397 | /@esbuild/linux-arm@0.18.11:
398 | resolution: {integrity: sha512-Idipz+Taso/toi2ETugShXjQ3S59b6m62KmLHkJlSq/cBejixmIydqrtM2XTvNCywFl3VC7SreSf6NV0i6sRyg==}
399 | engines: {node: '>=12'}
400 | cpu: [arm]
401 | os: [linux]
402 | requiresBuild: true
403 | dev: true
404 | optional: true
405 |
406 | /@esbuild/linux-ia32@0.18.11:
407 | resolution: {integrity: sha512-S3hkIF6KUqRh9n1Q0dSyYcWmcVa9Cg+mSoZEfFuzoYXXsk6196qndrM+ZiHNwpZKi3XOXpShZZ+9dfN5ykqjjw==}
408 | engines: {node: '>=12'}
409 | cpu: [ia32]
410 | os: [linux]
411 | requiresBuild: true
412 | dev: true
413 | optional: true
414 |
415 | /@esbuild/linux-loong64@0.18.11:
416 | resolution: {integrity: sha512-MRESANOoObQINBA+RMZW+Z0TJWpibtE7cPFnahzyQHDCA9X9LOmGh68MVimZlM9J8n5Ia8lU773te6O3ILW8kw==}
417 | engines: {node: '>=12'}
418 | cpu: [loong64]
419 | os: [linux]
420 | requiresBuild: true
421 | dev: true
422 | optional: true
423 |
424 | /@esbuild/linux-mips64el@0.18.11:
425 | resolution: {integrity: sha512-qVyPIZrXNMOLYegtD1u8EBccCrBVshxMrn5MkuFc3mEVsw7CCQHaqZ4jm9hbn4gWY95XFnb7i4SsT3eflxZsUg==}
426 | engines: {node: '>=12'}
427 | cpu: [mips64el]
428 | os: [linux]
429 | requiresBuild: true
430 | dev: true
431 | optional: true
432 |
433 | /@esbuild/linux-ppc64@0.18.11:
434 | resolution: {integrity: sha512-T3yd8vJXfPirZaUOoA9D2ZjxZX4Gr3QuC3GztBJA6PklLotc/7sXTOuuRkhE9W/5JvJP/K9b99ayPNAD+R+4qQ==}
435 | engines: {node: '>=12'}
436 | cpu: [ppc64]
437 | os: [linux]
438 | requiresBuild: true
439 | dev: true
440 | optional: true
441 |
442 | /@esbuild/linux-riscv64@0.18.11:
443 | resolution: {integrity: sha512-evUoRPWiwuFk++snjH9e2cAjF5VVSTj+Dnf+rkO/Q20tRqv+644279TZlPK8nUGunjPAtQRCj1jQkDAvL6rm2w==}
444 | engines: {node: '>=12'}
445 | cpu: [riscv64]
446 | os: [linux]
447 | requiresBuild: true
448 | dev: true
449 | optional: true
450 |
451 | /@esbuild/linux-s390x@0.18.11:
452 | resolution: {integrity: sha512-/SlRJ15XR6i93gRWquRxYCfhTeC5PdqEapKoLbX63PLCmAkXZHY2uQm2l9bN0oPHBsOw2IswRZctMYS0MijFcg==}
453 | engines: {node: '>=12'}
454 | cpu: [s390x]
455 | os: [linux]
456 | requiresBuild: true
457 | dev: true
458 | optional: true
459 |
460 | /@esbuild/linux-x64@0.18.11:
461 | resolution: {integrity: sha512-xcncej+wF16WEmIwPtCHi0qmx1FweBqgsRtEL1mSHLFR6/mb3GEZfLQnx+pUDfRDEM4DQF8dpXIW7eDOZl1IbA==}
462 | engines: {node: '>=12'}
463 | cpu: [x64]
464 | os: [linux]
465 | requiresBuild: true
466 | dev: true
467 | optional: true
468 |
469 | /@esbuild/netbsd-x64@0.18.11:
470 | resolution: {integrity: sha512-aSjMHj/F7BuS1CptSXNg6S3M4F3bLp5wfFPIJM+Km2NfIVfFKhdmfHF9frhiCLIGVzDziggqWll0B+9AUbud/Q==}
471 | engines: {node: '>=12'}
472 | cpu: [x64]
473 | os: [netbsd]
474 | requiresBuild: true
475 | dev: true
476 | optional: true
477 |
478 | /@esbuild/openbsd-x64@0.18.11:
479 | resolution: {integrity: sha512-tNBq+6XIBZtht0xJGv7IBB5XaSyvYPCm1PxJ33zLQONdZoLVM0bgGqUrXnJyiEguD9LU4AHiu+GCXy/Hm9LsdQ==}
480 | engines: {node: '>=12'}
481 | cpu: [x64]
482 | os: [openbsd]
483 | requiresBuild: true
484 | dev: true
485 | optional: true
486 |
487 | /@esbuild/sunos-x64@0.18.11:
488 | resolution: {integrity: sha512-kxfbDOrH4dHuAAOhr7D7EqaYf+W45LsAOOhAet99EyuxxQmjbk8M9N4ezHcEiCYPaiW8Dj3K26Z2V17Gt6p3ng==}
489 | engines: {node: '>=12'}
490 | cpu: [x64]
491 | os: [sunos]
492 | requiresBuild: true
493 | dev: true
494 | optional: true
495 |
496 | /@esbuild/win32-arm64@0.18.11:
497 | resolution: {integrity: sha512-Sh0dDRyk1Xi348idbal7lZyfSkjhJsdFeuC13zqdipsvMetlGiFQNdO+Yfp6f6B4FbyQm7qsk16yaZk25LChzg==}
498 | engines: {node: '>=12'}
499 | cpu: [arm64]
500 | os: [win32]
501 | requiresBuild: true
502 | dev: true
503 | optional: true
504 |
505 | /@esbuild/win32-ia32@0.18.11:
506 | resolution: {integrity: sha512-o9JUIKF1j0rqJTFbIoF4bXj6rvrTZYOrfRcGyL0Vm5uJ/j5CkBD/51tpdxe9lXEDouhRgdr/BYzUrDOvrWwJpg==}
507 | engines: {node: '>=12'}
508 | cpu: [ia32]
509 | os: [win32]
510 | requiresBuild: true
511 | dev: true
512 | optional: true
513 |
514 | /@esbuild/win32-x64@0.18.11:
515 | resolution: {integrity: sha512-rQI4cjLHd2hGsM1LqgDI7oOCYbQ6IBOVsX9ejuRMSze0GqXUG2ekwiKkiBU1pRGSeCqFFHxTrcEydB2Hyoz9CA==}
516 | engines: {node: '>=12'}
517 | cpu: [x64]
518 | os: [win32]
519 | requiresBuild: true
520 | dev: true
521 | optional: true
522 |
523 | /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0):
524 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
525 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
526 | peerDependencies:
527 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
528 | dependencies:
529 | eslint: 8.44.0
530 | eslint-visitor-keys: 3.4.1
531 | dev: true
532 |
533 | /@eslint-community/regexpp@4.5.1:
534 | resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
535 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
536 | dev: true
537 |
538 | /@eslint/eslintrc@2.1.0:
539 | resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==}
540 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
541 | dependencies:
542 | ajv: 6.12.6
543 | debug: 4.3.4
544 | espree: 9.6.0
545 | globals: 13.20.0
546 | ignore: 5.2.4
547 | import-fresh: 3.3.0
548 | js-yaml: 4.1.0
549 | minimatch: 3.1.2
550 | strip-json-comments: 3.1.1
551 | transitivePeerDependencies:
552 | - supports-color
553 | dev: true
554 |
555 | /@eslint/js@8.44.0:
556 | resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==}
557 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
558 | dev: true
559 |
560 | /@humanwhocodes/config-array@0.11.10:
561 | resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
562 | engines: {node: '>=10.10.0'}
563 | dependencies:
564 | '@humanwhocodes/object-schema': 1.2.1
565 | debug: 4.3.4
566 | minimatch: 3.1.2
567 | transitivePeerDependencies:
568 | - supports-color
569 | dev: true
570 |
571 | /@humanwhocodes/module-importer@1.0.1:
572 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
573 | engines: {node: '>=12.22'}
574 | dev: true
575 |
576 | /@humanwhocodes/object-schema@1.2.1:
577 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
578 | dev: true
579 |
580 | /@iconify/types@2.0.0:
581 | resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
582 | dev: true
583 |
584 | /@iconify/utils@2.1.7:
585 | resolution: {integrity: sha512-P8S3z/L1LcV4Qem9AoCfVAaTFGySEMzFEY4CHZLkfRj0Fv9LiR+AwjDgrDrzyI93U2L2mg9JHsbTJ52mF8suNw==}
586 | dependencies:
587 | '@antfu/install-pkg': 0.1.1
588 | '@antfu/utils': 0.7.5
589 | '@iconify/types': 2.0.0
590 | debug: 4.3.4
591 | kolorist: 1.8.0
592 | local-pkg: 0.4.3
593 | transitivePeerDependencies:
594 | - supports-color
595 | dev: true
596 |
597 | /@jridgewell/gen-mapping@0.3.3:
598 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
599 | engines: {node: '>=6.0.0'}
600 | dependencies:
601 | '@jridgewell/set-array': 1.1.2
602 | '@jridgewell/sourcemap-codec': 1.4.15
603 | '@jridgewell/trace-mapping': 0.3.18
604 | dev: true
605 |
606 | /@jridgewell/resolve-uri@3.1.0:
607 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
608 | engines: {node: '>=6.0.0'}
609 | dev: true
610 |
611 | /@jridgewell/set-array@1.1.2:
612 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
613 | engines: {node: '>=6.0.0'}
614 | dev: true
615 |
616 | /@jridgewell/sourcemap-codec@1.4.14:
617 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
618 | dev: true
619 |
620 | /@jridgewell/sourcemap-codec@1.4.15:
621 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
622 | dev: true
623 |
624 | /@jridgewell/trace-mapping@0.3.18:
625 | resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
626 | dependencies:
627 | '@jridgewell/resolve-uri': 3.1.0
628 | '@jridgewell/sourcemap-codec': 1.4.14
629 | dev: true
630 |
631 | /@nicolo-ribaudo/semver-v6@6.3.3:
632 | resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==}
633 | hasBin: true
634 | dev: true
635 |
636 | /@nodelib/fs.scandir@2.1.5:
637 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
638 | engines: {node: '>= 8'}
639 | dependencies:
640 | '@nodelib/fs.stat': 2.0.5
641 | run-parallel: 1.2.0
642 | dev: true
643 |
644 | /@nodelib/fs.stat@2.0.5:
645 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
646 | engines: {node: '>= 8'}
647 | dev: true
648 |
649 | /@nodelib/fs.walk@1.2.8:
650 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
651 | engines: {node: '>= 8'}
652 | dependencies:
653 | '@nodelib/fs.scandir': 2.1.5
654 | fastq: 1.15.0
655 | dev: true
656 |
657 | /@pkgr/utils@2.4.2:
658 | resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==}
659 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
660 | dependencies:
661 | cross-spawn: 7.0.3
662 | fast-glob: 3.3.0
663 | is-glob: 4.0.3
664 | open: 9.1.0
665 | picocolors: 1.0.0
666 | tslib: 2.6.0
667 | dev: true
668 |
669 | /@polka/url@1.0.0-next.21:
670 | resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
671 | dev: true
672 |
673 | /@rollup/pluginutils@5.0.2:
674 | resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
675 | engines: {node: '>=14.0.0'}
676 | peerDependencies:
677 | rollup: ^1.20.0||^2.0.0||^3.0.0
678 | peerDependenciesMeta:
679 | rollup:
680 | optional: true
681 | dependencies:
682 | '@types/estree': 1.0.1
683 | estree-walker: 2.0.2
684 | picomatch: 2.3.1
685 | dev: true
686 |
687 | /@types/estree@1.0.1:
688 | resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
689 | dev: true
690 |
691 | /@types/json-schema@7.0.12:
692 | resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
693 | dev: true
694 |
695 | /@types/node@20.4.1:
696 | resolution: {integrity: sha512-JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg==}
697 | dev: true
698 |
699 | /@types/prop-types@15.7.5:
700 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
701 | dev: true
702 |
703 | /@types/react-dom@18.2.6:
704 | resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==}
705 | dependencies:
706 | '@types/react': 18.2.14
707 | dev: true
708 |
709 | /@types/react@18.2.14:
710 | resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==}
711 | dependencies:
712 | '@types/prop-types': 15.7.5
713 | '@types/scheduler': 0.16.3
714 | csstype: 3.1.2
715 | dev: true
716 |
717 | /@types/scheduler@0.16.3:
718 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
719 | dev: true
720 |
721 | /@types/semver@7.5.0:
722 | resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
723 | dev: true
724 |
725 | /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6):
726 | resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==}
727 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
728 | peerDependencies:
729 | '@typescript-eslint/parser': ^5.0.0
730 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
731 | typescript: '*'
732 | peerDependenciesMeta:
733 | typescript:
734 | optional: true
735 | dependencies:
736 | '@eslint-community/regexpp': 4.5.1
737 | '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.1.6)
738 | '@typescript-eslint/scope-manager': 5.61.0
739 | '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6)
740 | '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6)
741 | debug: 4.3.4
742 | eslint: 8.44.0
743 | graphemer: 1.4.0
744 | ignore: 5.2.4
745 | natural-compare-lite: 1.4.0
746 | semver: 7.5.4
747 | tsutils: 3.21.0(typescript@5.1.6)
748 | typescript: 5.1.6
749 | transitivePeerDependencies:
750 | - supports-color
751 | dev: true
752 |
753 | /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.1.6):
754 | resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==}
755 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
756 | peerDependencies:
757 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
758 | typescript: '*'
759 | peerDependenciesMeta:
760 | typescript:
761 | optional: true
762 | dependencies:
763 | '@typescript-eslint/scope-manager': 5.61.0
764 | '@typescript-eslint/types': 5.61.0
765 | '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
766 | debug: 4.3.4
767 | eslint: 8.44.0
768 | typescript: 5.1.6
769 | transitivePeerDependencies:
770 | - supports-color
771 | dev: true
772 |
773 | /@typescript-eslint/scope-manager@5.61.0:
774 | resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==}
775 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
776 | dependencies:
777 | '@typescript-eslint/types': 5.61.0
778 | '@typescript-eslint/visitor-keys': 5.61.0
779 | dev: true
780 |
781 | /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.1.6):
782 | resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==}
783 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
784 | peerDependencies:
785 | eslint: '*'
786 | typescript: '*'
787 | peerDependenciesMeta:
788 | typescript:
789 | optional: true
790 | dependencies:
791 | '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
792 | '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6)
793 | debug: 4.3.4
794 | eslint: 8.44.0
795 | tsutils: 3.21.0(typescript@5.1.6)
796 | typescript: 5.1.6
797 | transitivePeerDependencies:
798 | - supports-color
799 | dev: true
800 |
801 | /@typescript-eslint/types@5.61.0:
802 | resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==}
803 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
804 | dev: true
805 |
806 | /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6):
807 | resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==}
808 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
809 | peerDependencies:
810 | typescript: '*'
811 | peerDependenciesMeta:
812 | typescript:
813 | optional: true
814 | dependencies:
815 | '@typescript-eslint/types': 5.61.0
816 | '@typescript-eslint/visitor-keys': 5.61.0
817 | debug: 4.3.4
818 | globby: 11.1.0
819 | is-glob: 4.0.3
820 | semver: 7.5.4
821 | tsutils: 3.21.0(typescript@5.1.6)
822 | typescript: 5.1.6
823 | transitivePeerDependencies:
824 | - supports-color
825 | dev: true
826 |
827 | /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.1.6):
828 | resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==}
829 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
830 | peerDependencies:
831 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
832 | dependencies:
833 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0)
834 | '@types/json-schema': 7.0.12
835 | '@types/semver': 7.5.0
836 | '@typescript-eslint/scope-manager': 5.61.0
837 | '@typescript-eslint/types': 5.61.0
838 | '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
839 | eslint: 8.44.0
840 | eslint-scope: 5.1.1
841 | semver: 7.5.4
842 | transitivePeerDependencies:
843 | - supports-color
844 | - typescript
845 | dev: true
846 |
847 | /@typescript-eslint/visitor-keys@5.61.0:
848 | resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==}
849 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
850 | dependencies:
851 | '@typescript-eslint/types': 5.61.0
852 | eslint-visitor-keys: 3.4.1
853 | dev: true
854 |
855 | /@unocss/astro@0.53.5(vite@4.4.2):
856 | resolution: {integrity: sha512-W4A0uIN4xAzVH6Vwf5ukG8rJpCeIwQZcpZPrEBWsqY5YcHZcLTFGMHcNmxyeG0qoXpXoxtvHyXXhgGU0BY5ZEw==}
857 | dependencies:
858 | '@unocss/core': 0.53.5
859 | '@unocss/reset': 0.53.5
860 | '@unocss/vite': 0.53.5(vite@4.4.2)
861 | transitivePeerDependencies:
862 | - rollup
863 | - vite
864 | dev: true
865 |
866 | /@unocss/cli@0.53.5:
867 | resolution: {integrity: sha512-UKi+9BAKh3X5eM4pPQviXMOtN8JkQWKdGy/056rRLQysPB07VBwWr5gYAlJMMJ2wFAIthag43X5I8btQAicFkg==}
868 | engines: {node: '>=14'}
869 | hasBin: true
870 | dependencies:
871 | '@ampproject/remapping': 2.2.1
872 | '@rollup/pluginutils': 5.0.2
873 | '@unocss/config': 0.53.5
874 | '@unocss/core': 0.53.5
875 | '@unocss/preset-uno': 0.53.5
876 | cac: 6.7.14
877 | chokidar: 3.5.3
878 | colorette: 2.0.20
879 | consola: 3.2.3
880 | fast-glob: 3.3.0
881 | magic-string: 0.30.1
882 | pathe: 1.1.1
883 | perfect-debounce: 1.0.0
884 | transitivePeerDependencies:
885 | - rollup
886 | dev: true
887 |
888 | /@unocss/config@0.53.5:
889 | resolution: {integrity: sha512-YtpWoIFB1V8Dp3KcVQqislQYQSSBYbjTpoVIkUGrpupwOz9+W1tfL2yKEENDiZc11crJSneGr04wsP2dI1ld0w==}
890 | engines: {node: '>=14'}
891 | dependencies:
892 | '@unocss/core': 0.53.5
893 | unconfig: 0.3.9
894 | dev: true
895 |
896 | /@unocss/core@0.53.5:
897 | resolution: {integrity: sha512-jBvk4FeUAALAomGfMFFmrXLy01/5DjugdnWgawFAQpSToFTxbMHS7x+pXKu/18cq+YLS8uyl9S0Ywy1jNbfS3Q==}
898 | dev: true
899 |
900 | /@unocss/eslint-config@0.53.5(eslint@8.44.0)(typescript@5.1.6):
901 | resolution: {integrity: sha512-13WZYFkOdls+K5ZYOdRINBZrj8qRKqMuqH4ty7l/B0tZ43b82jsWIP0qNTEW015gmQpktH9Hjwxvm8ctDIkN9A==}
902 | engines: {node: '>=14'}
903 | dependencies:
904 | '@unocss/eslint-plugin': 0.53.5(eslint@8.44.0)(typescript@5.1.6)
905 | transitivePeerDependencies:
906 | - eslint
907 | - supports-color
908 | - typescript
909 | dev: true
910 |
911 | /@unocss/eslint-plugin@0.53.5(eslint@8.44.0)(typescript@5.1.6):
912 | resolution: {integrity: sha512-PeNeay6PV74OYWjf6UAYq88Sz1+4jWjejLw/dtZOkKkNkm+vkeV9kQ43vtS7bBtTPKjGZgC3Z4fXi6gSQmYueg==}
913 | engines: {node: '>=14'}
914 | dependencies:
915 | '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.1.6)
916 | '@unocss/config': 0.53.5
917 | '@unocss/core': 0.53.5
918 | magic-string: 0.30.1
919 | synckit: 0.8.5
920 | transitivePeerDependencies:
921 | - eslint
922 | - supports-color
923 | - typescript
924 | dev: true
925 |
926 | /@unocss/extractor-arbitrary-variants@0.53.5:
927 | resolution: {integrity: sha512-rSS3Q8/+lEwxXfXzEOFuhAQGMpaaZcBAYDiNCYS/9BqKrTzhSYG82Qy80ISpqSZr0BTLET4X3dC6B6Rd4GU5vQ==}
928 | dependencies:
929 | '@unocss/core': 0.53.5
930 | dev: true
931 |
932 | /@unocss/inspector@0.53.5:
933 | resolution: {integrity: sha512-gWUhgsoB3LyjIAdw6n/eMcLGmUNwuSTrgwcRubIDFhHOC5/E6ppdUQmS8a4oH4qjunfvBgoTHwcGlXvlvb3S5w==}
934 | dependencies:
935 | gzip-size: 6.0.0
936 | sirv: 2.0.3
937 | dev: true
938 |
939 | /@unocss/postcss@0.53.5(postcss@8.4.25):
940 | resolution: {integrity: sha512-IfZl4GxrpegP/861bp3e0X3VcQJ9/M3VxC9UQ7zzxkOz/E8R09iMpbnznVLrTiLp2r96p5k/ggXLoadFm1FxGA==}
941 | engines: {node: '>=14'}
942 | peerDependencies:
943 | postcss: ^8.4.21
944 | dependencies:
945 | '@unocss/config': 0.53.5
946 | '@unocss/core': 0.53.5
947 | css-tree: 2.3.1
948 | fast-glob: 3.3.0
949 | magic-string: 0.30.1
950 | postcss: 8.4.25
951 | dev: true
952 |
953 | /@unocss/preset-attributify@0.53.5:
954 | resolution: {integrity: sha512-0TJD9hVUWu0T4dtdURApyFiliqbckYYGZe2PZBgUrHCypbI0zq7k3MdXFYmIuYxqDPErJVm8rO9lwMpKfTsvuA==}
955 | dependencies:
956 | '@unocss/core': 0.53.5
957 | dev: true
958 |
959 | /@unocss/preset-icons@0.53.5:
960 | resolution: {integrity: sha512-zlO0fLJiJtITta3BnE3y5Yc0hajjovCB/woos4MR5gvcFXHW9Hfy7pXuj90GvHLfaRj0JRWXa1WRaqJXS4tzOw==}
961 | dependencies:
962 | '@iconify/utils': 2.1.7
963 | '@unocss/core': 0.53.5
964 | ofetch: 1.1.1
965 | transitivePeerDependencies:
966 | - supports-color
967 | dev: true
968 |
969 | /@unocss/preset-mini@0.53.5:
970 | resolution: {integrity: sha512-aeVctTW0M41RXyCyQvhRawIh+ylhl7mlWfAjv7cP3ALvIRWbB6jUw1C8Ke6rU2vg0s0yaJKRuFPFmLMqGwzoSg==}
971 | dependencies:
972 | '@unocss/core': 0.53.5
973 | '@unocss/extractor-arbitrary-variants': 0.53.5
974 | dev: true
975 |
976 | /@unocss/preset-tagify@0.53.5:
977 | resolution: {integrity: sha512-0HpWU85Pz1RbFqf/QtlP992ISSqWZ3JT2rWI7ekBLai463ptdBUks/PfH22M+uBSwPig5XNJ0DtyS7hm8TEWhg==}
978 | dependencies:
979 | '@unocss/core': 0.53.5
980 | dev: true
981 |
982 | /@unocss/preset-typography@0.53.5:
983 | resolution: {integrity: sha512-roZXiJ14wuXcpLN5YodAN1wKYlwCDJ8L/TQlUphyM487i0QbKwXAZg8dA1SWCQIl5V9Qcq/3EXAQmLnhRdwBMA==}
984 | dependencies:
985 | '@unocss/core': 0.53.5
986 | '@unocss/preset-mini': 0.53.5
987 | dev: true
988 |
989 | /@unocss/preset-uno@0.53.5:
990 | resolution: {integrity: sha512-DRJMBkSqfz0EOzf5cwefkPF8J6lNvrhBp4ztw9blewDc2wTQqL/lAj/I/nbyOdXhJUOxhj/qj7gJjsNZctud0A==}
991 | dependencies:
992 | '@unocss/core': 0.53.5
993 | '@unocss/preset-mini': 0.53.5
994 | '@unocss/preset-wind': 0.53.5
995 | dev: true
996 |
997 | /@unocss/preset-web-fonts@0.53.5:
998 | resolution: {integrity: sha512-yVkOOECyOQqahRGSefcBKtNYAUnYFqqFedGy0SBBjadPWn80vjVg7ojljKlJsgSQdrpcJ38wwWr3Oh4UWwBuQQ==}
999 | dependencies:
1000 | '@unocss/core': 0.53.5
1001 | ofetch: 1.1.1
1002 | dev: true
1003 |
1004 | /@unocss/preset-wind@0.53.5:
1005 | resolution: {integrity: sha512-hSMF11Gx8oMDtePvXLmpArSNpQRHb098P8+qYpwvyNfS29i6agfjGBuIDk/f+j8mhqcfrEEuEmPIl2yojT9nxA==}
1006 | dependencies:
1007 | '@unocss/core': 0.53.5
1008 | '@unocss/preset-mini': 0.53.5
1009 | dev: true
1010 |
1011 | /@unocss/reset@0.53.5:
1012 | resolution: {integrity: sha512-tH8K4jw76mbWA67UUHKV6zxiwOsiG+byrHoG3lz8hr+cm6OgEJ3WjNNp7dZINmr7S7ylWO6igbxGQpsAuIQZCw==}
1013 | dev: true
1014 |
1015 | /@unocss/scope@0.53.5:
1016 | resolution: {integrity: sha512-KBwemWNJIbu3+BWp0X4o5ERN0/nzF7hXBnjYNSb0s8phrydC6oJrp52XYlIHHTe7O4KzwkqGgf/xOMXMFpviDg==}
1017 | dev: true
1018 |
1019 | /@unocss/transformer-attributify-jsx-babel@0.53.5:
1020 | resolution: {integrity: sha512-z9ar2IaZmcNVTZhK9ZuRUd3LqA/iUG/JMF0OA92RNclo8SazWdu7eJAdV86SHXqAf7eSB/t0evsde14DtEREjA==}
1021 | dependencies:
1022 | '@unocss/core': 0.53.5
1023 | dev: true
1024 |
1025 | /@unocss/transformer-attributify-jsx@0.53.5:
1026 | resolution: {integrity: sha512-ynAElIi9DxtHyKCW+OXPcLxje2ghVzKo80eaAVRAdVpyawsjtE4iHWjHRbESkiTsHW5CiJupdXo2vx1obXFLnQ==}
1027 | dependencies:
1028 | '@unocss/core': 0.53.5
1029 | dev: true
1030 |
1031 | /@unocss/transformer-compile-class@0.53.5:
1032 | resolution: {integrity: sha512-7Z0/40T4EuHMGpXb2XlamkResaASMRm07csCl7REGUTg9ccDRWlnSLzGD8UUgKoygsmqXp2cxKMJLMb5YJ9LLA==}
1033 | dependencies:
1034 | '@unocss/core': 0.53.5
1035 | dev: true
1036 |
1037 | /@unocss/transformer-directives@0.53.5:
1038 | resolution: {integrity: sha512-u1OIZZUAXux9Q0mb58X3infxY2Iq6pY7uJB7IhMc2I1ntpyx875spwyvvfUHqOgIPTNR4XxfxKFGPHpjPNbNeQ==}
1039 | dependencies:
1040 | '@unocss/core': 0.53.5
1041 | css-tree: 2.3.1
1042 | dev: true
1043 |
1044 | /@unocss/transformer-variant-group@0.53.5:
1045 | resolution: {integrity: sha512-+xDx6JojGkcKwx87sX0y4xM/RuTI0QyPJAKebXUSyuKnctXrTH/p+WNGFIVWiY8suUMnnMesAZpw6O2Oln921w==}
1046 | dependencies:
1047 | '@unocss/core': 0.53.5
1048 | dev: true
1049 |
1050 | /@unocss/vite@0.53.5(vite@4.4.2):
1051 | resolution: {integrity: sha512-ez0MVRatewLUQq79LI+XRAVRbXWaGbK1K1ht2B8vGyL9OrL6uieEwzxjHV7+rUa8i+FEHfD4Ntmtdpb3WuQSAA==}
1052 | peerDependencies:
1053 | vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0
1054 | dependencies:
1055 | '@ampproject/remapping': 2.2.1
1056 | '@rollup/pluginutils': 5.0.2
1057 | '@unocss/config': 0.53.5
1058 | '@unocss/core': 0.53.5
1059 | '@unocss/inspector': 0.53.5
1060 | '@unocss/scope': 0.53.5
1061 | '@unocss/transformer-directives': 0.53.5
1062 | chokidar: 3.5.3
1063 | fast-glob: 3.3.0
1064 | magic-string: 0.30.1
1065 | vite: 4.4.2(@types/node@20.4.1)
1066 | transitivePeerDependencies:
1067 | - rollup
1068 | dev: true
1069 |
1070 | /@vitejs/plugin-react@4.0.3(vite@4.4.2):
1071 | resolution: {integrity: sha512-pwXDog5nwwvSIzwrvYYmA2Ljcd/ZNlcsSG2Q9CNDBwnsd55UGAyr2doXtB5j+2uymRCnCfExlznzzSFbBRcoCg==}
1072 | engines: {node: ^14.18.0 || >=16.0.0}
1073 | peerDependencies:
1074 | vite: ^4.2.0
1075 | dependencies:
1076 | '@babel/core': 7.22.8
1077 | '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.8)
1078 | '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.8)
1079 | react-refresh: 0.14.0
1080 | vite: 4.4.2(@types/node@20.4.1)
1081 | transitivePeerDependencies:
1082 | - supports-color
1083 | dev: true
1084 |
1085 | /acorn-jsx@5.3.2(acorn@8.10.0):
1086 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1087 | peerDependencies:
1088 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1089 | dependencies:
1090 | acorn: 8.10.0
1091 | dev: true
1092 |
1093 | /acorn@8.10.0:
1094 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
1095 | engines: {node: '>=0.4.0'}
1096 | hasBin: true
1097 | dev: true
1098 |
1099 | /ajv@6.12.6:
1100 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1101 | dependencies:
1102 | fast-deep-equal: 3.1.3
1103 | fast-json-stable-stringify: 2.1.0
1104 | json-schema-traverse: 0.4.1
1105 | uri-js: 4.4.1
1106 | dev: true
1107 |
1108 | /ansi-regex@5.0.1:
1109 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1110 | engines: {node: '>=8'}
1111 | dev: true
1112 |
1113 | /ansi-styles@3.2.1:
1114 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
1115 | engines: {node: '>=4'}
1116 | dependencies:
1117 | color-convert: 1.9.3
1118 | dev: true
1119 |
1120 | /ansi-styles@4.3.0:
1121 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1122 | engines: {node: '>=8'}
1123 | dependencies:
1124 | color-convert: 2.0.1
1125 | dev: true
1126 |
1127 | /anymatch@3.1.3:
1128 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
1129 | engines: {node: '>= 8'}
1130 | dependencies:
1131 | normalize-path: 3.0.0
1132 | picomatch: 2.3.1
1133 | dev: true
1134 |
1135 | /argparse@2.0.1:
1136 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1137 | dev: true
1138 |
1139 | /array-union@2.1.0:
1140 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
1141 | engines: {node: '>=8'}
1142 | dev: true
1143 |
1144 | /balanced-match@1.0.2:
1145 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1146 | dev: true
1147 |
1148 | /big-integer@1.6.51:
1149 | resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
1150 | engines: {node: '>=0.6'}
1151 | dev: true
1152 |
1153 | /binary-extensions@2.2.0:
1154 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
1155 | engines: {node: '>=8'}
1156 | dev: true
1157 |
1158 | /bplist-parser@0.2.0:
1159 | resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
1160 | engines: {node: '>= 5.10.0'}
1161 | dependencies:
1162 | big-integer: 1.6.51
1163 | dev: true
1164 |
1165 | /brace-expansion@1.1.11:
1166 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1167 | dependencies:
1168 | balanced-match: 1.0.2
1169 | concat-map: 0.0.1
1170 | dev: true
1171 |
1172 | /braces@3.0.2:
1173 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
1174 | engines: {node: '>=8'}
1175 | dependencies:
1176 | fill-range: 7.0.1
1177 | dev: true
1178 |
1179 | /browserslist@4.21.9:
1180 | resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
1181 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1182 | hasBin: true
1183 | dependencies:
1184 | caniuse-lite: 1.0.30001514
1185 | electron-to-chromium: 1.4.454
1186 | node-releases: 2.0.13
1187 | update-browserslist-db: 1.0.11(browserslist@4.21.9)
1188 | dev: true
1189 |
1190 | /bundle-name@3.0.0:
1191 | resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
1192 | engines: {node: '>=12'}
1193 | dependencies:
1194 | run-applescript: 5.0.0
1195 | dev: true
1196 |
1197 | /cac@6.7.14:
1198 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
1199 | engines: {node: '>=8'}
1200 | dev: true
1201 |
1202 | /callsites@3.1.0:
1203 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1204 | engines: {node: '>=6'}
1205 | dev: true
1206 |
1207 | /caniuse-lite@1.0.30001514:
1208 | resolution: {integrity: sha512-ENcIpYBmwAAOm/V2cXgM7rZUrKKaqisZl4ZAI520FIkqGXUxJjmaIssbRW5HVVR5tyV6ygTLIm15aU8LUmQSaQ==}
1209 | dev: true
1210 |
1211 | /chalk@2.4.2:
1212 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
1213 | engines: {node: '>=4'}
1214 | dependencies:
1215 | ansi-styles: 3.2.1
1216 | escape-string-regexp: 1.0.5
1217 | supports-color: 5.5.0
1218 | dev: true
1219 |
1220 | /chalk@4.1.2:
1221 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1222 | engines: {node: '>=10'}
1223 | dependencies:
1224 | ansi-styles: 4.3.0
1225 | supports-color: 7.2.0
1226 | dev: true
1227 |
1228 | /chokidar@3.5.3:
1229 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
1230 | engines: {node: '>= 8.10.0'}
1231 | dependencies:
1232 | anymatch: 3.1.3
1233 | braces: 3.0.2
1234 | glob-parent: 5.1.2
1235 | is-binary-path: 2.1.0
1236 | is-glob: 4.0.3
1237 | normalize-path: 3.0.0
1238 | readdirp: 3.6.0
1239 | optionalDependencies:
1240 | fsevents: 2.3.2
1241 | dev: true
1242 |
1243 | /color-convert@1.9.3:
1244 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
1245 | dependencies:
1246 | color-name: 1.1.3
1247 | dev: true
1248 |
1249 | /color-convert@2.0.1:
1250 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1251 | engines: {node: '>=7.0.0'}
1252 | dependencies:
1253 | color-name: 1.1.4
1254 | dev: true
1255 |
1256 | /color-name@1.1.3:
1257 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
1258 | dev: true
1259 |
1260 | /color-name@1.1.4:
1261 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1262 | dev: true
1263 |
1264 | /colorette@2.0.20:
1265 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
1266 | dev: true
1267 |
1268 | /concat-map@0.0.1:
1269 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1270 | dev: true
1271 |
1272 | /consola@3.2.3:
1273 | resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
1274 | engines: {node: ^14.18.0 || >=16.10.0}
1275 | dev: true
1276 |
1277 | /convert-source-map@1.9.0:
1278 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
1279 | dev: true
1280 |
1281 | /cross-spawn@7.0.3:
1282 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1283 | engines: {node: '>= 8'}
1284 | dependencies:
1285 | path-key: 3.1.1
1286 | shebang-command: 2.0.0
1287 | which: 2.0.2
1288 | dev: true
1289 |
1290 | /css-tree@2.3.1:
1291 | resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
1292 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
1293 | dependencies:
1294 | mdn-data: 2.0.30
1295 | source-map-js: 1.0.2
1296 | dev: true
1297 |
1298 | /csstype@3.1.2:
1299 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
1300 | dev: true
1301 |
1302 | /debug@4.3.4:
1303 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1304 | engines: {node: '>=6.0'}
1305 | peerDependencies:
1306 | supports-color: '*'
1307 | peerDependenciesMeta:
1308 | supports-color:
1309 | optional: true
1310 | dependencies:
1311 | ms: 2.1.2
1312 | dev: true
1313 |
1314 | /deep-is@0.1.4:
1315 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1316 | dev: true
1317 |
1318 | /default-browser-id@3.0.0:
1319 | resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
1320 | engines: {node: '>=12'}
1321 | dependencies:
1322 | bplist-parser: 0.2.0
1323 | untildify: 4.0.0
1324 | dev: true
1325 |
1326 | /default-browser@4.0.0:
1327 | resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
1328 | engines: {node: '>=14.16'}
1329 | dependencies:
1330 | bundle-name: 3.0.0
1331 | default-browser-id: 3.0.0
1332 | execa: 7.1.1
1333 | titleize: 3.0.0
1334 | dev: true
1335 |
1336 | /define-lazy-prop@3.0.0:
1337 | resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
1338 | engines: {node: '>=12'}
1339 | dev: true
1340 |
1341 | /defu@6.1.2:
1342 | resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
1343 | dev: true
1344 |
1345 | /destr@2.0.0:
1346 | resolution: {integrity: sha512-FJ9RDpf3GicEBvzI3jxc2XhHzbqD8p4ANw/1kPsFBfTvP1b7Gn/Lg1vO7R9J4IVgoMbyUmFrFGZafJ1hPZpvlg==}
1347 | dev: true
1348 |
1349 | /dir-glob@3.0.1:
1350 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1351 | engines: {node: '>=8'}
1352 | dependencies:
1353 | path-type: 4.0.0
1354 | dev: true
1355 |
1356 | /doctrine@3.0.0:
1357 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1358 | engines: {node: '>=6.0.0'}
1359 | dependencies:
1360 | esutils: 2.0.3
1361 | dev: true
1362 |
1363 | /duplexer@0.1.2:
1364 | resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
1365 | dev: true
1366 |
1367 | /electron-to-chromium@1.4.454:
1368 | resolution: {integrity: sha512-pmf1rbAStw8UEQ0sr2cdJtWl48ZMuPD9Sto8HVQOq9vx9j2WgDEN6lYoaqFvqEHYOmGA9oRGn7LqWI9ta0YugQ==}
1369 | dev: true
1370 |
1371 | /esbuild@0.18.11:
1372 | resolution: {integrity: sha512-i8u6mQF0JKJUlGR3OdFLKldJQMMs8OqM9Cc3UCi9XXziJ9WERM5bfkHaEAy0YAvPRMgqSW55W7xYn84XtEFTtA==}
1373 | engines: {node: '>=12'}
1374 | hasBin: true
1375 | requiresBuild: true
1376 | optionalDependencies:
1377 | '@esbuild/android-arm': 0.18.11
1378 | '@esbuild/android-arm64': 0.18.11
1379 | '@esbuild/android-x64': 0.18.11
1380 | '@esbuild/darwin-arm64': 0.18.11
1381 | '@esbuild/darwin-x64': 0.18.11
1382 | '@esbuild/freebsd-arm64': 0.18.11
1383 | '@esbuild/freebsd-x64': 0.18.11
1384 | '@esbuild/linux-arm': 0.18.11
1385 | '@esbuild/linux-arm64': 0.18.11
1386 | '@esbuild/linux-ia32': 0.18.11
1387 | '@esbuild/linux-loong64': 0.18.11
1388 | '@esbuild/linux-mips64el': 0.18.11
1389 | '@esbuild/linux-ppc64': 0.18.11
1390 | '@esbuild/linux-riscv64': 0.18.11
1391 | '@esbuild/linux-s390x': 0.18.11
1392 | '@esbuild/linux-x64': 0.18.11
1393 | '@esbuild/netbsd-x64': 0.18.11
1394 | '@esbuild/openbsd-x64': 0.18.11
1395 | '@esbuild/sunos-x64': 0.18.11
1396 | '@esbuild/win32-arm64': 0.18.11
1397 | '@esbuild/win32-ia32': 0.18.11
1398 | '@esbuild/win32-x64': 0.18.11
1399 | dev: true
1400 |
1401 | /escalade@3.1.1:
1402 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
1403 | engines: {node: '>=6'}
1404 | dev: true
1405 |
1406 | /escape-string-regexp@1.0.5:
1407 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
1408 | engines: {node: '>=0.8.0'}
1409 | dev: true
1410 |
1411 | /escape-string-regexp@4.0.0:
1412 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1413 | engines: {node: '>=10'}
1414 | dev: true
1415 |
1416 | /eslint-plugin-react-hooks@4.6.0(eslint@8.44.0):
1417 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1418 | engines: {node: '>=10'}
1419 | peerDependencies:
1420 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1421 | dependencies:
1422 | eslint: 8.44.0
1423 | dev: true
1424 |
1425 | /eslint-plugin-react-refresh@0.4.3(eslint@8.44.0):
1426 | resolution: {integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==}
1427 | peerDependencies:
1428 | eslint: '>=7'
1429 | dependencies:
1430 | eslint: 8.44.0
1431 | dev: true
1432 |
1433 | /eslint-scope@5.1.1:
1434 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1435 | engines: {node: '>=8.0.0'}
1436 | dependencies:
1437 | esrecurse: 4.3.0
1438 | estraverse: 4.3.0
1439 | dev: true
1440 |
1441 | /eslint-scope@7.2.0:
1442 | resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
1443 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1444 | dependencies:
1445 | esrecurse: 4.3.0
1446 | estraverse: 5.3.0
1447 | dev: true
1448 |
1449 | /eslint-visitor-keys@3.4.1:
1450 | resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
1451 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1452 | dev: true
1453 |
1454 | /eslint@8.44.0:
1455 | resolution: {integrity: sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==}
1456 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1457 | hasBin: true
1458 | dependencies:
1459 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0)
1460 | '@eslint-community/regexpp': 4.5.1
1461 | '@eslint/eslintrc': 2.1.0
1462 | '@eslint/js': 8.44.0
1463 | '@humanwhocodes/config-array': 0.11.10
1464 | '@humanwhocodes/module-importer': 1.0.1
1465 | '@nodelib/fs.walk': 1.2.8
1466 | ajv: 6.12.6
1467 | chalk: 4.1.2
1468 | cross-spawn: 7.0.3
1469 | debug: 4.3.4
1470 | doctrine: 3.0.0
1471 | escape-string-regexp: 4.0.0
1472 | eslint-scope: 7.2.0
1473 | eslint-visitor-keys: 3.4.1
1474 | espree: 9.6.0
1475 | esquery: 1.5.0
1476 | esutils: 2.0.3
1477 | fast-deep-equal: 3.1.3
1478 | file-entry-cache: 6.0.1
1479 | find-up: 5.0.0
1480 | glob-parent: 6.0.2
1481 | globals: 13.20.0
1482 | graphemer: 1.4.0
1483 | ignore: 5.2.4
1484 | import-fresh: 3.3.0
1485 | imurmurhash: 0.1.4
1486 | is-glob: 4.0.3
1487 | is-path-inside: 3.0.3
1488 | js-yaml: 4.1.0
1489 | json-stable-stringify-without-jsonify: 1.0.1
1490 | levn: 0.4.1
1491 | lodash.merge: 4.6.2
1492 | minimatch: 3.1.2
1493 | natural-compare: 1.4.0
1494 | optionator: 0.9.3
1495 | strip-ansi: 6.0.1
1496 | strip-json-comments: 3.1.1
1497 | text-table: 0.2.0
1498 | transitivePeerDependencies:
1499 | - supports-color
1500 | dev: true
1501 |
1502 | /espree@9.6.0:
1503 | resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==}
1504 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1505 | dependencies:
1506 | acorn: 8.10.0
1507 | acorn-jsx: 5.3.2(acorn@8.10.0)
1508 | eslint-visitor-keys: 3.4.1
1509 | dev: true
1510 |
1511 | /esquery@1.5.0:
1512 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1513 | engines: {node: '>=0.10'}
1514 | dependencies:
1515 | estraverse: 5.3.0
1516 | dev: true
1517 |
1518 | /esrecurse@4.3.0:
1519 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1520 | engines: {node: '>=4.0'}
1521 | dependencies:
1522 | estraverse: 5.3.0
1523 | dev: true
1524 |
1525 | /estraverse@4.3.0:
1526 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
1527 | engines: {node: '>=4.0'}
1528 | dev: true
1529 |
1530 | /estraverse@5.3.0:
1531 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1532 | engines: {node: '>=4.0'}
1533 | dev: true
1534 |
1535 | /estree-walker@2.0.2:
1536 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
1537 | dev: true
1538 |
1539 | /esutils@2.0.3:
1540 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1541 | engines: {node: '>=0.10.0'}
1542 | dev: true
1543 |
1544 | /execa@5.1.1:
1545 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
1546 | engines: {node: '>=10'}
1547 | dependencies:
1548 | cross-spawn: 7.0.3
1549 | get-stream: 6.0.1
1550 | human-signals: 2.1.0
1551 | is-stream: 2.0.1
1552 | merge-stream: 2.0.0
1553 | npm-run-path: 4.0.1
1554 | onetime: 5.1.2
1555 | signal-exit: 3.0.7
1556 | strip-final-newline: 2.0.0
1557 | dev: true
1558 |
1559 | /execa@7.1.1:
1560 | resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
1561 | engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
1562 | dependencies:
1563 | cross-spawn: 7.0.3
1564 | get-stream: 6.0.1
1565 | human-signals: 4.3.1
1566 | is-stream: 3.0.0
1567 | merge-stream: 2.0.0
1568 | npm-run-path: 5.1.0
1569 | onetime: 6.0.0
1570 | signal-exit: 3.0.7
1571 | strip-final-newline: 3.0.0
1572 | dev: true
1573 |
1574 | /fast-deep-equal@3.1.3:
1575 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1576 | dev: true
1577 |
1578 | /fast-glob@3.3.0:
1579 | resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==}
1580 | engines: {node: '>=8.6.0'}
1581 | dependencies:
1582 | '@nodelib/fs.stat': 2.0.5
1583 | '@nodelib/fs.walk': 1.2.8
1584 | glob-parent: 5.1.2
1585 | merge2: 1.4.1
1586 | micromatch: 4.0.5
1587 | dev: true
1588 |
1589 | /fast-json-stable-stringify@2.1.0:
1590 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1591 | dev: true
1592 |
1593 | /fast-levenshtein@2.0.6:
1594 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1595 | dev: true
1596 |
1597 | /fastq@1.15.0:
1598 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
1599 | dependencies:
1600 | reusify: 1.0.4
1601 | dev: true
1602 |
1603 | /file-entry-cache@6.0.1:
1604 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1605 | engines: {node: ^10.12.0 || >=12.0.0}
1606 | dependencies:
1607 | flat-cache: 3.0.4
1608 | dev: true
1609 |
1610 | /fill-range@7.0.1:
1611 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1612 | engines: {node: '>=8'}
1613 | dependencies:
1614 | to-regex-range: 5.0.1
1615 | dev: true
1616 |
1617 | /find-up@5.0.0:
1618 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1619 | engines: {node: '>=10'}
1620 | dependencies:
1621 | locate-path: 6.0.0
1622 | path-exists: 4.0.0
1623 | dev: true
1624 |
1625 | /flat-cache@3.0.4:
1626 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
1627 | engines: {node: ^10.12.0 || >=12.0.0}
1628 | dependencies:
1629 | flatted: 3.2.7
1630 | rimraf: 3.0.2
1631 | dev: true
1632 |
1633 | /flatted@3.2.7:
1634 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
1635 | dev: true
1636 |
1637 | /framer-motion@10.12.18(react-dom@18.2.0)(react@18.2.0):
1638 | resolution: {integrity: sha512-cfhiUpPbj+0eEWKjuD+5cz5cMqH71xOtMxGiS/cSGfHn2OlHIEAqFnFyzEMENw5PxWR9bMVhatzzpD6lexmHZQ==}
1639 | peerDependencies:
1640 | react: ^18.0.0
1641 | react-dom: ^18.0.0
1642 | peerDependenciesMeta:
1643 | react:
1644 | optional: true
1645 | react-dom:
1646 | optional: true
1647 | dependencies:
1648 | react: 18.2.0
1649 | react-dom: 18.2.0(react@18.2.0)
1650 | tslib: 2.6.0
1651 | optionalDependencies:
1652 | '@emotion/is-prop-valid': 0.8.8
1653 | dev: false
1654 |
1655 | /fs.realpath@1.0.0:
1656 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1657 | dev: true
1658 |
1659 | /fsevents@2.3.2:
1660 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
1661 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1662 | os: [darwin]
1663 | requiresBuild: true
1664 | dev: true
1665 | optional: true
1666 |
1667 | /gensync@1.0.0-beta.2:
1668 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1669 | engines: {node: '>=6.9.0'}
1670 | dev: true
1671 |
1672 | /get-stream@6.0.1:
1673 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
1674 | engines: {node: '>=10'}
1675 | dev: true
1676 |
1677 | /glob-parent@5.1.2:
1678 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1679 | engines: {node: '>= 6'}
1680 | dependencies:
1681 | is-glob: 4.0.3
1682 | dev: true
1683 |
1684 | /glob-parent@6.0.2:
1685 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1686 | engines: {node: '>=10.13.0'}
1687 | dependencies:
1688 | is-glob: 4.0.3
1689 | dev: true
1690 |
1691 | /glob@7.2.3:
1692 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1693 | dependencies:
1694 | fs.realpath: 1.0.0
1695 | inflight: 1.0.6
1696 | inherits: 2.0.4
1697 | minimatch: 3.1.2
1698 | once: 1.4.0
1699 | path-is-absolute: 1.0.1
1700 | dev: true
1701 |
1702 | /globals@11.12.0:
1703 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
1704 | engines: {node: '>=4'}
1705 | dev: true
1706 |
1707 | /globals@13.20.0:
1708 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
1709 | engines: {node: '>=8'}
1710 | dependencies:
1711 | type-fest: 0.20.2
1712 | dev: true
1713 |
1714 | /globby@11.1.0:
1715 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1716 | engines: {node: '>=10'}
1717 | dependencies:
1718 | array-union: 2.1.0
1719 | dir-glob: 3.0.1
1720 | fast-glob: 3.3.0
1721 | ignore: 5.2.4
1722 | merge2: 1.4.1
1723 | slash: 3.0.0
1724 | dev: true
1725 |
1726 | /graphemer@1.4.0:
1727 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1728 | dev: true
1729 |
1730 | /gzip-size@6.0.0:
1731 | resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
1732 | engines: {node: '>=10'}
1733 | dependencies:
1734 | duplexer: 0.1.2
1735 | dev: true
1736 |
1737 | /has-flag@3.0.0:
1738 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
1739 | engines: {node: '>=4'}
1740 | dev: true
1741 |
1742 | /has-flag@4.0.0:
1743 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1744 | engines: {node: '>=8'}
1745 | dev: true
1746 |
1747 | /human-signals@2.1.0:
1748 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
1749 | engines: {node: '>=10.17.0'}
1750 | dev: true
1751 |
1752 | /human-signals@4.3.1:
1753 | resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
1754 | engines: {node: '>=14.18.0'}
1755 | dev: true
1756 |
1757 | /ignore@5.2.4:
1758 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
1759 | engines: {node: '>= 4'}
1760 | dev: true
1761 |
1762 | /import-fresh@3.3.0:
1763 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1764 | engines: {node: '>=6'}
1765 | dependencies:
1766 | parent-module: 1.0.1
1767 | resolve-from: 4.0.0
1768 | dev: true
1769 |
1770 | /imurmurhash@0.1.4:
1771 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1772 | engines: {node: '>=0.8.19'}
1773 | dev: true
1774 |
1775 | /inflight@1.0.6:
1776 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1777 | dependencies:
1778 | once: 1.4.0
1779 | wrappy: 1.0.2
1780 | dev: true
1781 |
1782 | /inherits@2.0.4:
1783 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1784 | dev: true
1785 |
1786 | /is-binary-path@2.1.0:
1787 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1788 | engines: {node: '>=8'}
1789 | dependencies:
1790 | binary-extensions: 2.2.0
1791 | dev: true
1792 |
1793 | /is-docker@2.2.1:
1794 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
1795 | engines: {node: '>=8'}
1796 | hasBin: true
1797 | dev: true
1798 |
1799 | /is-docker@3.0.0:
1800 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
1801 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1802 | hasBin: true
1803 | dev: true
1804 |
1805 | /is-extglob@2.1.1:
1806 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1807 | engines: {node: '>=0.10.0'}
1808 | dev: true
1809 |
1810 | /is-glob@4.0.3:
1811 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1812 | engines: {node: '>=0.10.0'}
1813 | dependencies:
1814 | is-extglob: 2.1.1
1815 | dev: true
1816 |
1817 | /is-inside-container@1.0.0:
1818 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
1819 | engines: {node: '>=14.16'}
1820 | hasBin: true
1821 | dependencies:
1822 | is-docker: 3.0.0
1823 | dev: true
1824 |
1825 | /is-number@7.0.0:
1826 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1827 | engines: {node: '>=0.12.0'}
1828 | dev: true
1829 |
1830 | /is-path-inside@3.0.3:
1831 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1832 | engines: {node: '>=8'}
1833 | dev: true
1834 |
1835 | /is-stream@2.0.1:
1836 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
1837 | engines: {node: '>=8'}
1838 | dev: true
1839 |
1840 | /is-stream@3.0.0:
1841 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
1842 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1843 | dev: true
1844 |
1845 | /is-wsl@2.2.0:
1846 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
1847 | engines: {node: '>=8'}
1848 | dependencies:
1849 | is-docker: 2.2.1
1850 | dev: true
1851 |
1852 | /isexe@2.0.0:
1853 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1854 | dev: true
1855 |
1856 | /jiti@1.19.1:
1857 | resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==}
1858 | hasBin: true
1859 | dev: true
1860 |
1861 | /js-tokens@4.0.0:
1862 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1863 |
1864 | /js-yaml@4.1.0:
1865 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1866 | hasBin: true
1867 | dependencies:
1868 | argparse: 2.0.1
1869 | dev: true
1870 |
1871 | /jsesc@2.5.2:
1872 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
1873 | engines: {node: '>=4'}
1874 | hasBin: true
1875 | dev: true
1876 |
1877 | /json-schema-traverse@0.4.1:
1878 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1879 | dev: true
1880 |
1881 | /json-stable-stringify-without-jsonify@1.0.1:
1882 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1883 | dev: true
1884 |
1885 | /json5@2.2.3:
1886 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1887 | engines: {node: '>=6'}
1888 | hasBin: true
1889 | dev: true
1890 |
1891 | /kolorist@1.8.0:
1892 | resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
1893 | dev: true
1894 |
1895 | /levn@0.4.1:
1896 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1897 | engines: {node: '>= 0.8.0'}
1898 | dependencies:
1899 | prelude-ls: 1.2.1
1900 | type-check: 0.4.0
1901 | dev: true
1902 |
1903 | /local-pkg@0.4.3:
1904 | resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
1905 | engines: {node: '>=14'}
1906 | dev: true
1907 |
1908 | /locate-path@6.0.0:
1909 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1910 | engines: {node: '>=10'}
1911 | dependencies:
1912 | p-locate: 5.0.0
1913 | dev: true
1914 |
1915 | /lodash.merge@4.6.2:
1916 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1917 | dev: true
1918 |
1919 | /loose-envify@1.4.0:
1920 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1921 | hasBin: true
1922 | dependencies:
1923 | js-tokens: 4.0.0
1924 | dev: false
1925 |
1926 | /lru-cache@5.1.1:
1927 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1928 | dependencies:
1929 | yallist: 3.1.1
1930 | dev: true
1931 |
1932 | /lru-cache@6.0.0:
1933 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1934 | engines: {node: '>=10'}
1935 | dependencies:
1936 | yallist: 4.0.0
1937 | dev: true
1938 |
1939 | /lucide-react@0.259.0(react@18.2.0):
1940 | resolution: {integrity: sha512-dFBLc6jRDfcpD9NQ7NyFVa+YR3RHX6+bs+f/UiotvNPho+kd4WyeXWMCCchUf7i/pq3BAaHkbmtkbx/GxxHVUw==}
1941 | peerDependencies:
1942 | react: ^16.5.1 || ^17.0.0 || ^18.0.0
1943 | dependencies:
1944 | react: 18.2.0
1945 | dev: false
1946 |
1947 | /magic-string@0.30.1:
1948 | resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==}
1949 | engines: {node: '>=12'}
1950 | dependencies:
1951 | '@jridgewell/sourcemap-codec': 1.4.15
1952 | dev: true
1953 |
1954 | /mdn-data@2.0.30:
1955 | resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
1956 | dev: true
1957 |
1958 | /merge-stream@2.0.0:
1959 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
1960 | dev: true
1961 |
1962 | /merge2@1.4.1:
1963 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1964 | engines: {node: '>= 8'}
1965 | dev: true
1966 |
1967 | /micromatch@4.0.5:
1968 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
1969 | engines: {node: '>=8.6'}
1970 | dependencies:
1971 | braces: 3.0.2
1972 | picomatch: 2.3.1
1973 | dev: true
1974 |
1975 | /mimic-fn@2.1.0:
1976 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
1977 | engines: {node: '>=6'}
1978 | dev: true
1979 |
1980 | /mimic-fn@4.0.0:
1981 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
1982 | engines: {node: '>=12'}
1983 | dev: true
1984 |
1985 | /minimatch@3.1.2:
1986 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1987 | dependencies:
1988 | brace-expansion: 1.1.11
1989 | dev: true
1990 |
1991 | /mrmime@1.0.1:
1992 | resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
1993 | engines: {node: '>=10'}
1994 | dev: true
1995 |
1996 | /ms@2.1.2:
1997 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1998 | dev: true
1999 |
2000 | /nanoid@3.3.6:
2001 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
2002 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2003 | hasBin: true
2004 | dev: true
2005 |
2006 | /natural-compare-lite@1.4.0:
2007 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
2008 | dev: true
2009 |
2010 | /natural-compare@1.4.0:
2011 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2012 | dev: true
2013 |
2014 | /node-fetch-native@1.2.0:
2015 | resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==}
2016 | dev: true
2017 |
2018 | /node-releases@2.0.13:
2019 | resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
2020 | dev: true
2021 |
2022 | /normalize-path@3.0.0:
2023 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2024 | engines: {node: '>=0.10.0'}
2025 | dev: true
2026 |
2027 | /npm-run-path@4.0.1:
2028 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
2029 | engines: {node: '>=8'}
2030 | dependencies:
2031 | path-key: 3.1.1
2032 | dev: true
2033 |
2034 | /npm-run-path@5.1.0:
2035 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
2036 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
2037 | dependencies:
2038 | path-key: 4.0.0
2039 | dev: true
2040 |
2041 | /ofetch@1.1.1:
2042 | resolution: {integrity: sha512-SSMoktrp9SNLi20BWfB/BnnKcL0RDigXThD/mZBeQxkIRv1xrd9183MtLdsqRYLYSqW0eTr5t8w8MqjNhvoOQQ==}
2043 | dependencies:
2044 | destr: 2.0.0
2045 | node-fetch-native: 1.2.0
2046 | ufo: 1.1.2
2047 | dev: true
2048 |
2049 | /once@1.4.0:
2050 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2051 | dependencies:
2052 | wrappy: 1.0.2
2053 | dev: true
2054 |
2055 | /onetime@5.1.2:
2056 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
2057 | engines: {node: '>=6'}
2058 | dependencies:
2059 | mimic-fn: 2.1.0
2060 | dev: true
2061 |
2062 | /onetime@6.0.0:
2063 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
2064 | engines: {node: '>=12'}
2065 | dependencies:
2066 | mimic-fn: 4.0.0
2067 | dev: true
2068 |
2069 | /open@9.1.0:
2070 | resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
2071 | engines: {node: '>=14.16'}
2072 | dependencies:
2073 | default-browser: 4.0.0
2074 | define-lazy-prop: 3.0.0
2075 | is-inside-container: 1.0.0
2076 | is-wsl: 2.2.0
2077 | dev: true
2078 |
2079 | /optionator@0.9.3:
2080 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
2081 | engines: {node: '>= 0.8.0'}
2082 | dependencies:
2083 | '@aashutoshrathi/word-wrap': 1.2.6
2084 | deep-is: 0.1.4
2085 | fast-levenshtein: 2.0.6
2086 | levn: 0.4.1
2087 | prelude-ls: 1.2.1
2088 | type-check: 0.4.0
2089 | dev: true
2090 |
2091 | /p-limit@3.1.0:
2092 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2093 | engines: {node: '>=10'}
2094 | dependencies:
2095 | yocto-queue: 0.1.0
2096 | dev: true
2097 |
2098 | /p-locate@5.0.0:
2099 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2100 | engines: {node: '>=10'}
2101 | dependencies:
2102 | p-limit: 3.1.0
2103 | dev: true
2104 |
2105 | /parent-module@1.0.1:
2106 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
2107 | engines: {node: '>=6'}
2108 | dependencies:
2109 | callsites: 3.1.0
2110 | dev: true
2111 |
2112 | /path-exists@4.0.0:
2113 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2114 | engines: {node: '>=8'}
2115 | dev: true
2116 |
2117 | /path-is-absolute@1.0.1:
2118 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2119 | engines: {node: '>=0.10.0'}
2120 | dev: true
2121 |
2122 | /path-key@3.1.1:
2123 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2124 | engines: {node: '>=8'}
2125 | dev: true
2126 |
2127 | /path-key@4.0.0:
2128 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
2129 | engines: {node: '>=12'}
2130 | dev: true
2131 |
2132 | /path-type@4.0.0:
2133 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2134 | engines: {node: '>=8'}
2135 | dev: true
2136 |
2137 | /pathe@1.1.1:
2138 | resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
2139 | dev: true
2140 |
2141 | /perfect-debounce@1.0.0:
2142 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
2143 | dev: true
2144 |
2145 | /picocolors@1.0.0:
2146 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2147 | dev: true
2148 |
2149 | /picomatch@2.3.1:
2150 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2151 | engines: {node: '>=8.6'}
2152 | dev: true
2153 |
2154 | /postcss@8.4.25:
2155 | resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==}
2156 | engines: {node: ^10 || ^12 || >=14}
2157 | dependencies:
2158 | nanoid: 3.3.6
2159 | picocolors: 1.0.0
2160 | source-map-js: 1.0.2
2161 | dev: true
2162 |
2163 | /prelude-ls@1.2.1:
2164 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2165 | engines: {node: '>= 0.8.0'}
2166 | dev: true
2167 |
2168 | /punycode@2.3.0:
2169 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
2170 | engines: {node: '>=6'}
2171 | dev: true
2172 |
2173 | /queue-microtask@1.2.3:
2174 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
2175 | dev: true
2176 |
2177 | /react-dom@18.2.0(react@18.2.0):
2178 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
2179 | peerDependencies:
2180 | react: ^18.2.0
2181 | dependencies:
2182 | loose-envify: 1.4.0
2183 | react: 18.2.0
2184 | scheduler: 0.23.0
2185 | dev: false
2186 |
2187 | /react-refresh@0.14.0:
2188 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
2189 | engines: {node: '>=0.10.0'}
2190 | dev: true
2191 |
2192 | /react@18.2.0:
2193 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
2194 | engines: {node: '>=0.10.0'}
2195 | dependencies:
2196 | loose-envify: 1.4.0
2197 | dev: false
2198 |
2199 | /readdirp@3.6.0:
2200 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
2201 | engines: {node: '>=8.10.0'}
2202 | dependencies:
2203 | picomatch: 2.3.1
2204 | dev: true
2205 |
2206 | /resolve-from@4.0.0:
2207 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2208 | engines: {node: '>=4'}
2209 | dev: true
2210 |
2211 | /reusify@1.0.4:
2212 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
2213 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2214 | dev: true
2215 |
2216 | /rimraf@3.0.2:
2217 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
2218 | hasBin: true
2219 | dependencies:
2220 | glob: 7.2.3
2221 | dev: true
2222 |
2223 | /rollup@3.26.2:
2224 | resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==}
2225 | engines: {node: '>=14.18.0', npm: '>=8.0.0'}
2226 | hasBin: true
2227 | optionalDependencies:
2228 | fsevents: 2.3.2
2229 | dev: true
2230 |
2231 | /run-applescript@5.0.0:
2232 | resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
2233 | engines: {node: '>=12'}
2234 | dependencies:
2235 | execa: 5.1.1
2236 | dev: true
2237 |
2238 | /run-parallel@1.2.0:
2239 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
2240 | dependencies:
2241 | queue-microtask: 1.2.3
2242 | dev: true
2243 |
2244 | /scheduler@0.23.0:
2245 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
2246 | dependencies:
2247 | loose-envify: 1.4.0
2248 | dev: false
2249 |
2250 | /semver@7.5.4:
2251 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
2252 | engines: {node: '>=10'}
2253 | hasBin: true
2254 | dependencies:
2255 | lru-cache: 6.0.0
2256 | dev: true
2257 |
2258 | /shebang-command@2.0.0:
2259 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2260 | engines: {node: '>=8'}
2261 | dependencies:
2262 | shebang-regex: 3.0.0
2263 | dev: true
2264 |
2265 | /shebang-regex@3.0.0:
2266 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2267 | engines: {node: '>=8'}
2268 | dev: true
2269 |
2270 | /signal-exit@3.0.7:
2271 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
2272 | dev: true
2273 |
2274 | /sirv@2.0.3:
2275 | resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
2276 | engines: {node: '>= 10'}
2277 | dependencies:
2278 | '@polka/url': 1.0.0-next.21
2279 | mrmime: 1.0.1
2280 | totalist: 3.0.1
2281 | dev: true
2282 |
2283 | /slash@3.0.0:
2284 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
2285 | engines: {node: '>=8'}
2286 | dev: true
2287 |
2288 | /source-map-js@1.0.2:
2289 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
2290 | engines: {node: '>=0.10.0'}
2291 | dev: true
2292 |
2293 | /strip-ansi@6.0.1:
2294 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2295 | engines: {node: '>=8'}
2296 | dependencies:
2297 | ansi-regex: 5.0.1
2298 | dev: true
2299 |
2300 | /strip-final-newline@2.0.0:
2301 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
2302 | engines: {node: '>=6'}
2303 | dev: true
2304 |
2305 | /strip-final-newline@3.0.0:
2306 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
2307 | engines: {node: '>=12'}
2308 | dev: true
2309 |
2310 | /strip-json-comments@3.1.1:
2311 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2312 | engines: {node: '>=8'}
2313 | dev: true
2314 |
2315 | /supports-color@5.5.0:
2316 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
2317 | engines: {node: '>=4'}
2318 | dependencies:
2319 | has-flag: 3.0.0
2320 | dev: true
2321 |
2322 | /supports-color@7.2.0:
2323 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2324 | engines: {node: '>=8'}
2325 | dependencies:
2326 | has-flag: 4.0.0
2327 | dev: true
2328 |
2329 | /synckit@0.8.5:
2330 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
2331 | engines: {node: ^14.18.0 || >=16.0.0}
2332 | dependencies:
2333 | '@pkgr/utils': 2.4.2
2334 | tslib: 2.6.0
2335 | dev: true
2336 |
2337 | /text-table@0.2.0:
2338 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2339 | dev: true
2340 |
2341 | /titleize@3.0.0:
2342 | resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
2343 | engines: {node: '>=12'}
2344 | dev: true
2345 |
2346 | /to-fast-properties@2.0.0:
2347 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
2348 | engines: {node: '>=4'}
2349 | dev: true
2350 |
2351 | /to-regex-range@5.0.1:
2352 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2353 | engines: {node: '>=8.0'}
2354 | dependencies:
2355 | is-number: 7.0.0
2356 | dev: true
2357 |
2358 | /totalist@3.0.1:
2359 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
2360 | engines: {node: '>=6'}
2361 | dev: true
2362 |
2363 | /tslib@1.14.1:
2364 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
2365 | dev: true
2366 |
2367 | /tslib@2.6.0:
2368 | resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
2369 |
2370 | /tsutils@3.21.0(typescript@5.1.6):
2371 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
2372 | engines: {node: '>= 6'}
2373 | peerDependencies:
2374 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
2375 | dependencies:
2376 | tslib: 1.14.1
2377 | typescript: 5.1.6
2378 | dev: true
2379 |
2380 | /type-check@0.4.0:
2381 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2382 | engines: {node: '>= 0.8.0'}
2383 | dependencies:
2384 | prelude-ls: 1.2.1
2385 | dev: true
2386 |
2387 | /type-fest@0.20.2:
2388 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2389 | engines: {node: '>=10'}
2390 | dev: true
2391 |
2392 | /typescript@5.1.6:
2393 | resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
2394 | engines: {node: '>=14.17'}
2395 | hasBin: true
2396 | dev: true
2397 |
2398 | /ufo@1.1.2:
2399 | resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==}
2400 | dev: true
2401 |
2402 | /unconfig@0.3.9:
2403 | resolution: {integrity: sha512-8yhetFd48M641mxrkWA+C/lZU4N0rCOdlo3dFsyFPnBHBjMJfjT/3eAZBRT2RxCRqeBMAKBVgikejdS6yeBjMw==}
2404 | dependencies:
2405 | '@antfu/utils': 0.7.5
2406 | defu: 6.1.2
2407 | jiti: 1.19.1
2408 | dev: true
2409 |
2410 | /unocss@0.53.5(postcss@8.4.25)(vite@4.4.2):
2411 | resolution: {integrity: sha512-LXAdtzAaH8iEDWxW4t9i6TvJNw0OSrgdN+jw8rAZAWb73Nx51ZLoKPUB1rFvQMr2Li7LcsUj5hYpOrQbhhafYg==}
2412 | engines: {node: '>=14'}
2413 | peerDependencies:
2414 | '@unocss/webpack': 0.53.5
2415 | peerDependenciesMeta:
2416 | '@unocss/webpack':
2417 | optional: true
2418 | dependencies:
2419 | '@unocss/astro': 0.53.5(vite@4.4.2)
2420 | '@unocss/cli': 0.53.5
2421 | '@unocss/core': 0.53.5
2422 | '@unocss/extractor-arbitrary-variants': 0.53.5
2423 | '@unocss/postcss': 0.53.5(postcss@8.4.25)
2424 | '@unocss/preset-attributify': 0.53.5
2425 | '@unocss/preset-icons': 0.53.5
2426 | '@unocss/preset-mini': 0.53.5
2427 | '@unocss/preset-tagify': 0.53.5
2428 | '@unocss/preset-typography': 0.53.5
2429 | '@unocss/preset-uno': 0.53.5
2430 | '@unocss/preset-web-fonts': 0.53.5
2431 | '@unocss/preset-wind': 0.53.5
2432 | '@unocss/reset': 0.53.5
2433 | '@unocss/transformer-attributify-jsx': 0.53.5
2434 | '@unocss/transformer-attributify-jsx-babel': 0.53.5
2435 | '@unocss/transformer-compile-class': 0.53.5
2436 | '@unocss/transformer-directives': 0.53.5
2437 | '@unocss/transformer-variant-group': 0.53.5
2438 | '@unocss/vite': 0.53.5(vite@4.4.2)
2439 | transitivePeerDependencies:
2440 | - postcss
2441 | - rollup
2442 | - supports-color
2443 | - vite
2444 | dev: true
2445 |
2446 | /untildify@4.0.0:
2447 | resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
2448 | engines: {node: '>=8'}
2449 | dev: true
2450 |
2451 | /update-browserslist-db@1.0.11(browserslist@4.21.9):
2452 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
2453 | hasBin: true
2454 | peerDependencies:
2455 | browserslist: '>= 4.21.0'
2456 | dependencies:
2457 | browserslist: 4.21.9
2458 | escalade: 3.1.1
2459 | picocolors: 1.0.0
2460 | dev: true
2461 |
2462 | /uri-js@4.4.1:
2463 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2464 | dependencies:
2465 | punycode: 2.3.0
2466 | dev: true
2467 |
2468 | /use-sync-external-store@1.2.0(react@18.2.0):
2469 | resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
2470 | peerDependencies:
2471 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2472 | dependencies:
2473 | react: 18.2.0
2474 | dev: false
2475 |
2476 | /vite@4.4.2(@types/node@20.4.1):
2477 | resolution: {integrity: sha512-zUcsJN+UvdSyHhYa277UHhiJ3iq4hUBwHavOpsNUGsTgjBeoBlK8eDt+iT09pBq0h9/knhG/SPrZiM7cGmg7NA==}
2478 | engines: {node: ^14.18.0 || >=16.0.0}
2479 | hasBin: true
2480 | peerDependencies:
2481 | '@types/node': '>= 14'
2482 | less: '*'
2483 | lightningcss: ^1.21.0
2484 | sass: '*'
2485 | stylus: '*'
2486 | sugarss: '*'
2487 | terser: ^5.4.0
2488 | peerDependenciesMeta:
2489 | '@types/node':
2490 | optional: true
2491 | less:
2492 | optional: true
2493 | lightningcss:
2494 | optional: true
2495 | sass:
2496 | optional: true
2497 | stylus:
2498 | optional: true
2499 | sugarss:
2500 | optional: true
2501 | terser:
2502 | optional: true
2503 | dependencies:
2504 | '@types/node': 20.4.1
2505 | esbuild: 0.18.11
2506 | postcss: 8.4.25
2507 | rollup: 3.26.2
2508 | optionalDependencies:
2509 | fsevents: 2.3.2
2510 | dev: true
2511 |
2512 | /which@2.0.2:
2513 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2514 | engines: {node: '>= 8'}
2515 | hasBin: true
2516 | dependencies:
2517 | isexe: 2.0.0
2518 | dev: true
2519 |
2520 | /wouter@2.11.0(react@18.2.0):
2521 | resolution: {integrity: sha512-Y2CzNCwIN8kHjR2Q10D+UAgQND6TvBNmwXxgYw5ltXjjTlL7cLDUDpCip3a927Svxrmxr6vJMcPUysFxSvriCw==}
2522 | peerDependencies:
2523 | react: '>=16.8.0'
2524 | dependencies:
2525 | react: 18.2.0
2526 | use-sync-external-store: 1.2.0(react@18.2.0)
2527 | dev: false
2528 |
2529 | /wrappy@1.0.2:
2530 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2531 | dev: true
2532 |
2533 | /yallist@3.1.1:
2534 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2535 | dev: true
2536 |
2537 | /yallist@4.0.0:
2538 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2539 | dev: true
2540 |
2541 | /yocto-queue@0.1.0:
2542 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2543 | engines: {node: '>=10'}
2544 | dev: true
2545 |
--------------------------------------------------------------------------------
/public/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afordigital/personal-web/111919159fde9682fbb1838e85f61108fd295b48/public/logo.png
--------------------------------------------------------------------------------
/public/svgs/AntDesignAlertOutlined.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/CarbonAiStatusFailed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/IconParkTwotoneAlignBottomTwo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/MdiFaceWomanShimmerOutline.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/StreamlineLegalJusticeHammerHammerWorkLegalMalletOfficeCompanyGavelJusticeJudgeArbitrationCourt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/StreamlineTravelPlacesTheaterMaskHobbyTheaterMasksDramaEventShowEntertainment.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/svgs/burger-svgrepo-com.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding: 0;
3 | margin: 0;
4 | background-color: #050505;
5 | }
6 |
7 | @keyframes pulse {
8 | 0% {
9 | transform: scale(1);
10 | }
11 | 50% {
12 | transform: scale(1.05);
13 | }
14 | 100% {
15 | transform: scale(1);
16 | }
17 | }
18 |
19 | .element {
20 | animation: pulse 6s infinite cubic-bezier(0.4, 0, 0.6, 1);
21 | }
22 |
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
1 | import { Nav } from './components/Nav'
2 | import { MainScreen } from './components/MainScreen'
3 | import { Route } from 'wouter'
4 | import { Projects } from './components/Projects'
5 | import { Talks } from './components/Talks'
6 | import { Community } from './components/Community'
7 | import { Streams } from './components/Streams'
8 | import { InternalNav } from './components/InternalNav'
9 | import { NavMobile } from './components/NavMobile'
10 | import useLocation from 'wouter/use-location'
11 | import './App.css'
12 |
13 | function App () {
14 | const location = useLocation()
15 |
16 | return (
17 |
18 |
19 |
20 |
21 |
22 | {location[0] === '/' ? (
23 |
24 |
29 |
30 | ) : (
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | )}
47 |
48 | )
49 | }
50 |
51 | export default App
52 |
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/Community.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useEffect } from 'react'
2 | import { CardPulseBorder } from './common/CardPulse'
3 | import hackaforJSON from '../../config/hackaforProjects.json'
4 |
5 | export interface dataProps {
6 | avatar_url: string
7 | }
8 |
9 | export const Community = () => {
10 | const [data, setData] = useState()
11 |
12 | console.log(data)
13 |
14 | const BASE_URL = ''
15 |
16 | useEffect(() => {
17 | fetchData().then(data => setData(data))
18 | }, [])
19 |
20 | const fetchData = async () => {
21 | try {
22 | const response = await fetch(BASE_URL)
23 | const jsonData = await response.json()
24 |
25 | return jsonData as dataProps[]
26 |
27 | // console.log(jsonData)
28 | } catch (error) {
29 | console.error('Error al obtener los datos:', error)
30 | }
31 | }
32 |
33 | return (
34 |
35 |
36 |
Aforshow
37 |
38 |
44 |
45 |
Hackafor
46 |
47 | {hackaforJSON.map((proj, index) => (
48 |
55 | ))}
56 |
57 |
58 | )
59 | }
60 |
--------------------------------------------------------------------------------
/src/components/InternalNav.tsx:
--------------------------------------------------------------------------------
1 | import { Link, useLocation } from 'wouter'
2 |
3 | export const InternalNav = () => {
4 | const [location] = useLocation()
5 |
6 | return (
7 |
8 |
14 | Projects
15 |
16 |
22 | Talks
23 |
24 |
30 | Community
31 |
32 |
38 | Streams
39 |
40 |
41 | )
42 | }
43 |
--------------------------------------------------------------------------------
/src/components/MainScreen.tsx:
--------------------------------------------------------------------------------
1 | import { CustomLink } from './common/CustomLink'
2 |
3 | export const MainScreen = () => {
4 | return (
5 | <>
6 | Sara Montagud
7 | {/*
*/}
8 |
9 |
10 | Hi, I'm Sara Montagud, a frontend developer and programming content
11 | creator.
12 |
13 |
14 | Learning live as a creator in{' '}
15 |
21 | afor_digital
22 |
23 | .
24 |
25 |
26 | I always liked programming, until I discovered I could do it in front
27 | of people. Helping the programming community and participating with
28 | them to develop projects together makes me not only feel motivated,
29 | but learn more than I would have done otherwise.
30 |
31 |
32 | I always was a person who was drawn to discomfort in order to learn
33 | new things and move forward in life. I dreamed about making good
34 | technology, technology that brings value to others.
35 |
36 |
Find me on
37 |
38 |
39 |
40 |
44 |
48 |
52 |
56 |
57 |
58 | >
59 | )
60 | }
61 |
--------------------------------------------------------------------------------
/src/components/Nav.tsx:
--------------------------------------------------------------------------------
1 | import { Github, Linkedin, Twitter, Twitch } from 'lucide-react'
2 | import { Link, useLocation } from 'wouter'
3 | import { IconLink } from './common/IconLink'
4 |
5 | export const Nav = () => {
6 | const [location] = useLocation()
7 |
8 | return (
9 |
10 |
11 | Sara Montagud
12 |
13 |
14 |
20 | Projects
21 |
22 |
28 | Talks
29 |
30 |
36 | Community
37 |
38 |
44 | Streams
45 |
46 | }
50 | />
51 | }
55 | />
56 | }
60 | />
61 | }
65 | />
66 |
67 |
68 | )
69 | }
70 |
--------------------------------------------------------------------------------
/src/components/NavMobile.tsx:
--------------------------------------------------------------------------------
1 | import { Menu, X } from 'lucide-react'
2 | import { useState } from 'react'
3 | import { Github, Linkedin, Twitter, Twitch } from 'lucide-react'
4 | import { Link } from 'wouter'
5 | import { IconLink } from './common/IconLink'
6 |
7 | export const NavMobile = () => {
8 | const [isOpened, setIsOpened] = useState(false)
9 |
10 | const openMenu = () => {
11 | setIsOpened(isOpened => !isOpened)
12 | }
13 | return (
14 |
15 |
16 |
17 | Sara Montagud
18 |
19 | {isOpened ? :
}
20 |
21 | {isOpened && (
22 |
23 |
24 |
25 |
29 | Projects
30 |
31 |
35 | Talks
36 |
37 |
41 | Community
42 |
43 |
47 | Streams
48 |
49 |
50 |
51 |
52 | }
56 | />
57 |
62 | }
63 | />
64 |
69 | }
70 | />
71 | }
75 | />
76 |
77 |
78 | )}
79 |
80 | )
81 | }
82 |
--------------------------------------------------------------------------------
/src/components/Projects.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useEffect } from 'react'
2 | import { motion } from 'framer-motion'
3 | import { CardPulseBorder } from './common/CardPulse'
4 |
5 | const BASE_URL = 'https://api.github.com/users/afordigital/repos'
6 |
7 | export interface isGithubData {
8 | name: string
9 | description: string
10 | stargazers_count: number
11 | html_url: string
12 | }
13 |
14 | export const Projects = () => {
15 | const [data, setData] = useState([])
16 |
17 | useEffect(() => {
18 | fetchData().then(data => setData(data))
19 | }, [])
20 |
21 | const fetchData = async () => {
22 | try {
23 | const response = await fetch(BASE_URL)
24 | const jsonData = await response.json()
25 |
26 | return jsonData as isGithubData[]
27 |
28 | // console.log(jsonData)
29 | } catch (error) {
30 | console.error('Error al obtener los datos:', error)
31 | }
32 | }
33 |
34 | return (
35 | <>
36 |
37 |
41 | {data &&
42 | data?.map(d => (
43 |
50 | ))}
51 |
52 | >
53 | )
54 | }
55 |
--------------------------------------------------------------------------------
/src/components/Streams.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useEffect } from 'react'
2 | import { CardPulseStreams } from './common/CardPulseStreams'
3 |
4 | export interface StreamsData {
5 | title: string
6 | url: string
7 | }
8 |
9 | export const Streams = () => {
10 | const [streams, setStreams] = useState([])
11 |
12 | const BASE_URL =
13 | 'https://decapi.me/twitch/videos/afor_digital?limit=24&video_format={%22url%22:%22${url}%22,%22title%22:%22${title}%22}&separator=$$'
14 |
15 | const formatData = data => {
16 | setStreams(
17 | data.split('$$').map(a => {
18 | return JSON.parse(a)
19 | })
20 | )
21 | }
22 |
23 | useEffect(() => {
24 | fetchData().then(data => formatData(data))
25 | }, [])
26 |
27 | const fetchData = async () => {
28 | try {
29 | const response = await fetch(BASE_URL)
30 | const jsonData = await response.text()
31 |
32 | return jsonData
33 | } catch (error) {
34 | console.error('Error al obtener los datos:', error)
35 | }
36 | }
37 |
38 | return (
39 |
40 | {streams.map((stream, index) => (
41 |
42 | ))}
43 |
44 | )
45 | }
46 |
--------------------------------------------------------------------------------
/src/components/Talks.tsx:
--------------------------------------------------------------------------------
1 | import { CardPulseTalks } from './common/CardPulseTalks'
2 | import talksJSON from '../../config/talks.json'
3 |
4 | export const Talks = () => {
5 | return (
6 | <>
7 |
8 |
9 | {talksJSON.map((talk, index) => (
10 |
17 | ))}
18 |
19 | >
20 | )
21 | }
22 |
--------------------------------------------------------------------------------
/src/components/common/CardPulse.tsx:
--------------------------------------------------------------------------------
1 | import { ArrowUpRight, Star } from 'lucide-react'
2 | import { motion } from 'framer-motion'
3 |
4 | export interface isCardProps {
5 | name: string
6 | description: string
7 | stargazers_count: number
8 | url: string
9 | }
10 |
11 | export const CardPulseBorder = ({
12 | name,
13 | description,
14 | stargazers_count,
15 | url
16 | }: isCardProps) => {
17 | const item = {
18 | hidden: { y: 20, opacity: 0 },
19 | visible: {
20 | y: 0,
21 | opacity: 1
22 | }
23 | }
24 |
25 | return (
26 |
27 |
30 |
48 |
49 | )
50 | }
51 |
--------------------------------------------------------------------------------
/src/components/common/CardPulseStreams.tsx:
--------------------------------------------------------------------------------
1 | import { ArrowUpRight } from 'lucide-react'
2 |
3 | export interface isCardProps {
4 | title: string
5 | url: string
6 | }
7 |
8 | export const CardPulseStreams = ({ title, url }: isCardProps) => {
9 | return (
10 |
28 | )
29 | }
30 |
--------------------------------------------------------------------------------
/src/components/common/CardPulseTalks.tsx:
--------------------------------------------------------------------------------
1 | import { ArrowUpRight, MessageSquare, UserCog2, Users2 } from 'lucide-react'
2 |
3 | export interface isTalksProps {
4 | name: string
5 | description: string
6 | url: string
7 | index: number
8 | }
9 |
10 | const icons = {
11 | 0: ,
12 | 1: ,
13 | 2:
14 | }
15 |
16 | export const CardPulseTalks = ({
17 | name,
18 | description,
19 | url,
20 | index
21 | }: isTalksProps) => {
22 | return (
23 |
24 |
27 |
28 |
{icons[index]}
29 |
41 |
42 |
43 | )
44 | }
45 |
--------------------------------------------------------------------------------
/src/components/common/CustomLink.tsx:
--------------------------------------------------------------------------------
1 | import { ArrowUpRight } from 'lucide-react'
2 |
3 | interface CustomLinkProps {
4 | href: string
5 | title: string
6 | }
7 |
8 | export const CustomLink = ({ href, title }: CustomLinkProps) => {
9 | return (
10 |
17 | {title}
18 |
19 |
20 | )
21 | }
22 |
--------------------------------------------------------------------------------
/src/components/common/IconLink.tsx:
--------------------------------------------------------------------------------
1 | import type { ReactNode } from 'react'
2 |
3 | interface CustomIconProps {
4 | href: string
5 | text: string
6 | icon: ReactNode
7 | }
8 |
9 | export const IconLink = ({ href, text, icon }: CustomIconProps) => {
10 | return (
11 |
18 | {icon}
19 |
20 | )
21 | }
22 |
--------------------------------------------------------------------------------
/src/interfaces/interface.ts:
--------------------------------------------------------------------------------
1 | export interface isGithubData {
2 | name: string
3 | stargazers_count: number
4 | }
5 |
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import * as ReactDOM from 'react-dom/client'
2 | import App from './App.tsx'
3 | import 'virtual:uno.css'
4 |
5 | ReactDOM.createRoot(document.getElementById('root')!).render( )
6 |
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2020",
4 | "useDefineForClassFields": true,
5 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 | "esModuleInterop": true,
9 | "allowSyntheticDefaultImports": true,
10 |
11 | /* Bundler mode */
12 | "moduleResolution": "node",
13 | "allowImportingTsExtensions": true,
14 | "resolveJsonModule": true,
15 | "isolatedModules": true,
16 | "noEmit": true,
17 | "jsx": "react-jsx",
18 |
19 | /* Linting */
20 | "strict": false,
21 | "noUnusedLocals": true,
22 | "noUnusedParameters": true,
23 | "noFallthroughCasesInSwitch": true,
24 | "noUncheckedIndexedAccess": true
25 | },
26 | "include": ["src"],
27 | "references": [{ "path": "./tsconfig.node.json" }],
28 | "baseUrl": ".",
29 | "paths": {
30 | "@/*": ["./src/*"]
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "skipLibCheck": true,
5 | "module": "ESNext",
6 | "strict": true,
7 | "forceConsistentCasingInFileNames": true,
8 | "moduleResolution": "node",
9 | "allowSyntheticDefaultImports": true
10 | },
11 | "include": ["vite.config.ts"]
12 | }
13 |
--------------------------------------------------------------------------------
/uno.config.ts:
--------------------------------------------------------------------------------
1 | import {
2 | defineConfig,
3 | presetIcons,
4 | presetWebFonts,
5 | presetTypography,
6 | presetUno
7 | } from 'unocss'
8 |
9 | export default defineConfig({
10 | shortcuts: {
11 | 'custom-link':
12 | 'flex items-center hover:text-White-Custom ease-in duration-300 underline-transparent text-Text-Custom',
13 | 'icons-link':
14 | 'hover:text-White-Custom ease-in duration-300 underline-transparent text-Text-Custom'
15 | },
16 | theme: {
17 | colors: {
18 | Background: '#050505',
19 | Primary: '#8B8D8F',
20 | Secondary: '#343434',
21 | 'Secondary-Dark': '#0E0E0E',
22 | 'Text-Custom': '#BBBBBB',
23 | 'White-Custom': '#FAFAFA'
24 | },
25 | animation: {
26 | keyframes: {
27 | 'pulse-slow': '{0%, 100% {opacity:1} 50% {opacity:.5}}',
28 | 'border-width':
29 | '{ from { width: 10px; opacity: 0; } to { width: 100px; opacity: 1; } }'
30 | },
31 | durations: {
32 | 'pulse-slow': '6s',
33 | 'border-width': '3s'
34 | },
35 | timingFns: {
36 | 'pulse-slow': 'cubic-bezier(0.4, 0, 0.6, 1)',
37 | 'border-width': 'alternate'
38 | },
39 | counts: {
40 | 'pulse-slow': 'infinite',
41 | 'border-width': 'infinite'
42 | }
43 | }
44 | },
45 | presets: [
46 | presetUno(),
47 | presetTypography(),
48 | presetWebFonts({
49 | provider: 'google',
50 | fonts: {
51 | sans: 'Inter'
52 | }
53 | }),
54 | presetIcons({
55 | extraProperties: {
56 | display: 'inline-block',
57 | 'vertical-align': 'middle'
58 | },
59 | cdn: 'https://esm.sh/'
60 | })
61 | ]
62 | })
63 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import UnoCSS from 'unocss/vite'
2 | import { defineConfig } from 'vite'
3 | import react from '@vitejs/plugin-react'
4 | import path from 'path'
5 |
6 | // https://vitejs.dev/config/
7 | export default defineConfig({
8 | resolve: {
9 | alias: {
10 | '@': path.resolve(__dirname, './src')
11 | }
12 | },
13 | plugins: [react(), UnoCSS()]
14 | })
15 |
--------------------------------------------------------------------------------