├── .env.local.sample
├── .eslintrc.cjs
├── .gitignore
├── .prettierignore
├── .prettierrc
├── README.md
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.cjs
├── public
├── favicon.ico
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── components
│ ├── Header.tsx
│ ├── Layout.tsx
│ └── NoMatch.tsx
├── layouts
│ ├── dashboard.tsx
│ └── root.tsx
├── main.tsx
├── routes
│ ├── contact.tsx
│ ├── dashboard.tsx
│ ├── index.tsx
│ ├── invoices.tsx
│ ├── sign-in.tsx
│ └── sign-up.tsx
└── styles
│ ├── App.css
│ ├── Header.css
│ └── index.css
├── tailwind.config.ts
├── tsconfig.json
├── vite-env.d.ts
└── vite.config.js
/.env.local.sample:
--------------------------------------------------------------------------------
1 | VITE_CLERK_PUBLISHABLE_KEY=your-pub-key
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | env: { browser: true, es2020: true },
3 | extends: [
4 | 'eslint:recommended',
5 | 'plugin:react/recommended',
6 | 'plugin:react/jsx-runtime',
7 | 'plugin:react-hooks/recommended',
8 | ],
9 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
10 | settings: { react: { version: '18.2' } },
11 | plugins: ['react-refresh'],
12 | rules: {
13 | 'react-refresh/only-export-components': 'warn',
14 | },
15 | };
16 |
--------------------------------------------------------------------------------
/.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 | .env
15 |
16 | # Editor directories and files
17 | .vscode/*
18 | !.vscode/extensions.json
19 | .idea
20 | .DS_Store
21 | *.suo
22 | *.ntvs*
23 | *.njsproj
24 | *.sln
25 | *.sw?
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | pnpm-lock.yaml
2 | node_modules
3 | dist
4 | README.md
5 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": true,
3 | "singleQuote": true,
4 | "tabWidth": 2,
5 | "trailingComma": "es5",
6 | "printWidth": 80
7 | }
8 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Clerk + React Starter
2 |
3 | This repository shows how to use [Clerk](https://clerk.dev?utm_source=github&utm_medium=starter_repos&utm_campaign=react_starter) with React.
4 |
5 | ## Running the starter locally
6 |
7 | 1. Sign up for a Clerk account at https://clerk.dev
8 | 2. Fork and/or clone this repository
9 | 3. Install dependencies: `npm install`
10 | 4. Add your "Publishable Key" (found on [API Keys](https://dashboard.clerk.dev/last-active?path=/api-keys)) to a file called `.env.local`:
11 |
12 | ```sh
13 | echo "VITE_CLERK_PUBLISHABLE_KEY=CLERK_PUBLISHABLE_KEY" >> .env.local
14 | ```
15 |
16 | 5. Run the app: `npm run dev`
17 |
18 | ## Contact
19 |
20 | If you need support or have anything you would like to ask, please reach out in our [Discord channel](https://discord.com/invite/b5rXHjAg7A). We'd love to chat!
21 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Clerk + React
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clerk-react-starter",
3 | "version": "0.2.0",
4 | "private": true,
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "tsc -b && vite build",
9 | "lint": "eslint src --ext ts,tsx,cjs --report-unused-disable-directives --max-warnings 0 --fix",
10 | "preview": "vite preview",
11 | "format": "prettier --write ."
12 | },
13 | "dependencies": {
14 | "@clerk/clerk-react": "^5.2.10",
15 | "react": "^18.3.1",
16 | "react-dom": "^18.3.1",
17 | "react-router-dom": "^6.25.1",
18 | "ts-node": "^10.9.2"
19 | },
20 | "devDependencies": {
21 | "@types/node": "^22.0.0",
22 | "@types/react": "^18.3.3",
23 | "@types/react-dom": "^18.3.0",
24 | "@vitejs/plugin-react": "^4.3.1",
25 | "autoprefixer": "^10.4.19",
26 | "eslint": "^9.7.0",
27 | "eslint-plugin-react": "^7.34.4",
28 | "eslint-plugin-react-hooks": "^4.6.2",
29 | "eslint-plugin-react-refresh": "^0.4.8",
30 | "postcss": "^8.4.40",
31 | "prettier": "3.3.3",
32 | "tailwind": "^4.0.0",
33 | "tailwindcss": "^3.4.7",
34 | "typescript": "^5.5.4",
35 | "vite": "^5.3.5"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@clerk/clerk-react':
12 | specifier: ^5.2.10
13 | version: 5.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
14 | react:
15 | specifier: ^18.3.1
16 | version: 18.3.1
17 | react-dom:
18 | specifier: ^18.3.1
19 | version: 18.3.1(react@18.3.1)
20 | react-router-dom:
21 | specifier: ^6.25.1
22 | version: 6.25.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
23 | ts-node:
24 | specifier: ^10.9.2
25 | version: 10.9.2(@types/node@22.0.0)(typescript@5.5.4)
26 | devDependencies:
27 | '@types/node':
28 | specifier: ^22.0.0
29 | version: 22.0.0
30 | '@types/react':
31 | specifier: ^18.3.3
32 | version: 18.3.3
33 | '@types/react-dom':
34 | specifier: ^18.3.0
35 | version: 18.3.0
36 | '@vitejs/plugin-react':
37 | specifier: ^4.3.1
38 | version: 4.3.1(vite@5.3.5(@types/node@22.0.0))
39 | autoprefixer:
40 | specifier: ^10.4.19
41 | version: 10.4.19(postcss@8.4.40)
42 | eslint:
43 | specifier: ^9.7.0
44 | version: 9.7.0
45 | eslint-plugin-react:
46 | specifier: ^7.34.4
47 | version: 7.34.4(eslint@9.7.0)
48 | eslint-plugin-react-hooks:
49 | specifier: ^4.6.2
50 | version: 4.6.2(eslint@9.7.0)
51 | eslint-plugin-react-refresh:
52 | specifier: ^0.4.8
53 | version: 0.4.8(eslint@9.7.0)
54 | postcss:
55 | specifier: ^8.4.40
56 | version: 8.4.40
57 | prettier:
58 | specifier: 3.3.3
59 | version: 3.3.3
60 | tailwind:
61 | specifier: ^4.0.0
62 | version: 4.0.0
63 | tailwindcss:
64 | specifier: ^3.4.7
65 | version: 3.4.7(ts-node@10.9.2(@types/node@22.0.0)(typescript@5.5.4))
66 | typescript:
67 | specifier: ^5.5.4
68 | version: 5.5.4
69 | vite:
70 | specifier: ^5.3.5
71 | version: 5.3.5(@types/node@22.0.0)
72 |
73 | packages:
74 |
75 | '@alloc/quick-lru@5.2.0':
76 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
77 | engines: {node: '>=10'}
78 |
79 | '@ampproject/remapping@2.3.0':
80 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
81 | engines: {node: '>=6.0.0'}
82 |
83 | '@babel/code-frame@7.24.7':
84 | resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
85 | engines: {node: '>=6.9.0'}
86 |
87 | '@babel/compat-data@7.24.9':
88 | resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
89 | engines: {node: '>=6.9.0'}
90 |
91 | '@babel/core@7.24.9':
92 | resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
93 | engines: {node: '>=6.9.0'}
94 |
95 | '@babel/generator@7.24.9':
96 | resolution: {integrity: sha512-G8v3jRg+z8IwY1jHFxvCNhOPYPterE4XljNgdGTYfSTtzzwjIswIzIaSPSLs3R7yFuqnqNeay5rjICfqVr+/6A==}
97 | engines: {node: '>=6.9.0'}
98 |
99 | '@babel/helper-compilation-targets@7.24.8':
100 | resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
101 | engines: {node: '>=6.9.0'}
102 |
103 | '@babel/helper-environment-visitor@7.24.7':
104 | resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
105 | engines: {node: '>=6.9.0'}
106 |
107 | '@babel/helper-function-name@7.24.7':
108 | resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
109 | engines: {node: '>=6.9.0'}
110 |
111 | '@babel/helper-hoist-variables@7.24.7':
112 | resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
113 | engines: {node: '>=6.9.0'}
114 |
115 | '@babel/helper-module-imports@7.24.7':
116 | resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
117 | engines: {node: '>=6.9.0'}
118 |
119 | '@babel/helper-module-transforms@7.24.9':
120 | resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
121 | engines: {node: '>=6.9.0'}
122 | peerDependencies:
123 | '@babel/core': ^7.0.0
124 |
125 | '@babel/helper-plugin-utils@7.24.8':
126 | resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
127 | engines: {node: '>=6.9.0'}
128 |
129 | '@babel/helper-simple-access@7.24.7':
130 | resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
131 | engines: {node: '>=6.9.0'}
132 |
133 | '@babel/helper-split-export-declaration@7.24.7':
134 | resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
135 | engines: {node: '>=6.9.0'}
136 |
137 | '@babel/helper-string-parser@7.24.8':
138 | resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
139 | engines: {node: '>=6.9.0'}
140 |
141 | '@babel/helper-validator-identifier@7.24.7':
142 | resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
143 | engines: {node: '>=6.9.0'}
144 |
145 | '@babel/helper-validator-option@7.24.8':
146 | resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
147 | engines: {node: '>=6.9.0'}
148 |
149 | '@babel/helpers@7.24.8':
150 | resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
151 | engines: {node: '>=6.9.0'}
152 |
153 | '@babel/highlight@7.24.7':
154 | resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
155 | engines: {node: '>=6.9.0'}
156 |
157 | '@babel/parser@7.24.8':
158 | resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
159 | engines: {node: '>=6.0.0'}
160 | hasBin: true
161 |
162 | '@babel/plugin-transform-react-jsx-self@7.24.7':
163 | resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
164 | engines: {node: '>=6.9.0'}
165 | peerDependencies:
166 | '@babel/core': ^7.0.0-0
167 |
168 | '@babel/plugin-transform-react-jsx-source@7.24.7':
169 | resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
170 | engines: {node: '>=6.9.0'}
171 | peerDependencies:
172 | '@babel/core': ^7.0.0-0
173 |
174 | '@babel/runtime@7.1.2':
175 | resolution: {integrity: sha512-Y3SCjmhSupzFB6wcv1KmmFucH6gDVnI30WjOcicV10ju0cZjak3Jcs67YLIXBrmZYw1xCrVeJPbycFwrqNyxpg==}
176 |
177 | '@babel/runtime@7.2.0':
178 | resolution: {integrity: sha512-oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg==}
179 |
180 | '@babel/runtime@7.3.4':
181 | resolution: {integrity: sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==}
182 |
183 | '@babel/template@7.24.7':
184 | resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
185 | engines: {node: '>=6.9.0'}
186 |
187 | '@babel/traverse@7.24.8':
188 | resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
189 | engines: {node: '>=6.9.0'}
190 |
191 | '@babel/types@7.24.9':
192 | resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
193 | engines: {node: '>=6.9.0'}
194 |
195 | '@clerk/clerk-react@5.2.10':
196 | resolution: {integrity: sha512-qJZ79aiB80cUuqccKqhk6QImGIji4y1bjK1xbGnqiAthtMegxFShLJwEsrF7nl0Rw5yM9cphiwETEqBWfIPL4Q==}
197 | engines: {node: '>=18.17.0'}
198 | peerDependencies:
199 | react: '>=18 || >=19.0.0-beta'
200 | react-dom: '>=18 || >=19.0.0-beta'
201 |
202 | '@clerk/shared@2.4.1':
203 | resolution: {integrity: sha512-sApuz6hDRIai4Jwo/fBcihX74+DdrKLt08LkEVrooh/7zc0ipDOSGlqmAy15yNuKPaxpemp/9nW4T8gq6uIr9Q==}
204 | engines: {node: '>=18.17.0'}
205 | peerDependencies:
206 | react: '>=18 || >=19.0.0-beta'
207 | react-dom: '>=18 || >=19.0.0-beta'
208 | peerDependenciesMeta:
209 | react:
210 | optional: true
211 | react-dom:
212 | optional: true
213 |
214 | '@clerk/types@4.9.1':
215 | resolution: {integrity: sha512-fCmqzPBFh0rH9TlUVPpvPW225DtGJDuCv5GecwuuzD8hcgwGetTfRSDRNl5Dub5aJuqYWGQQCCnKfnfCrhZvrA==}
216 | engines: {node: '>=18.17.0'}
217 |
218 | '@cspotcode/source-map-support@0.8.1':
219 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
220 | engines: {node: '>=12'}
221 |
222 | '@esbuild/aix-ppc64@0.21.5':
223 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
224 | engines: {node: '>=12'}
225 | cpu: [ppc64]
226 | os: [aix]
227 |
228 | '@esbuild/android-arm64@0.21.5':
229 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
230 | engines: {node: '>=12'}
231 | cpu: [arm64]
232 | os: [android]
233 |
234 | '@esbuild/android-arm@0.21.5':
235 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
236 | engines: {node: '>=12'}
237 | cpu: [arm]
238 | os: [android]
239 |
240 | '@esbuild/android-x64@0.21.5':
241 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
242 | engines: {node: '>=12'}
243 | cpu: [x64]
244 | os: [android]
245 |
246 | '@esbuild/darwin-arm64@0.21.5':
247 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
248 | engines: {node: '>=12'}
249 | cpu: [arm64]
250 | os: [darwin]
251 |
252 | '@esbuild/darwin-x64@0.21.5':
253 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
254 | engines: {node: '>=12'}
255 | cpu: [x64]
256 | os: [darwin]
257 |
258 | '@esbuild/freebsd-arm64@0.21.5':
259 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
260 | engines: {node: '>=12'}
261 | cpu: [arm64]
262 | os: [freebsd]
263 |
264 | '@esbuild/freebsd-x64@0.21.5':
265 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
266 | engines: {node: '>=12'}
267 | cpu: [x64]
268 | os: [freebsd]
269 |
270 | '@esbuild/linux-arm64@0.21.5':
271 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
272 | engines: {node: '>=12'}
273 | cpu: [arm64]
274 | os: [linux]
275 |
276 | '@esbuild/linux-arm@0.21.5':
277 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
278 | engines: {node: '>=12'}
279 | cpu: [arm]
280 | os: [linux]
281 |
282 | '@esbuild/linux-ia32@0.21.5':
283 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
284 | engines: {node: '>=12'}
285 | cpu: [ia32]
286 | os: [linux]
287 |
288 | '@esbuild/linux-loong64@0.21.5':
289 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
290 | engines: {node: '>=12'}
291 | cpu: [loong64]
292 | os: [linux]
293 |
294 | '@esbuild/linux-mips64el@0.21.5':
295 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
296 | engines: {node: '>=12'}
297 | cpu: [mips64el]
298 | os: [linux]
299 |
300 | '@esbuild/linux-ppc64@0.21.5':
301 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
302 | engines: {node: '>=12'}
303 | cpu: [ppc64]
304 | os: [linux]
305 |
306 | '@esbuild/linux-riscv64@0.21.5':
307 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
308 | engines: {node: '>=12'}
309 | cpu: [riscv64]
310 | os: [linux]
311 |
312 | '@esbuild/linux-s390x@0.21.5':
313 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
314 | engines: {node: '>=12'}
315 | cpu: [s390x]
316 | os: [linux]
317 |
318 | '@esbuild/linux-x64@0.21.5':
319 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
320 | engines: {node: '>=12'}
321 | cpu: [x64]
322 | os: [linux]
323 |
324 | '@esbuild/netbsd-x64@0.21.5':
325 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
326 | engines: {node: '>=12'}
327 | cpu: [x64]
328 | os: [netbsd]
329 |
330 | '@esbuild/openbsd-x64@0.21.5':
331 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
332 | engines: {node: '>=12'}
333 | cpu: [x64]
334 | os: [openbsd]
335 |
336 | '@esbuild/sunos-x64@0.21.5':
337 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
338 | engines: {node: '>=12'}
339 | cpu: [x64]
340 | os: [sunos]
341 |
342 | '@esbuild/win32-arm64@0.21.5':
343 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
344 | engines: {node: '>=12'}
345 | cpu: [arm64]
346 | os: [win32]
347 |
348 | '@esbuild/win32-ia32@0.21.5':
349 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
350 | engines: {node: '>=12'}
351 | cpu: [ia32]
352 | os: [win32]
353 |
354 | '@esbuild/win32-x64@0.21.5':
355 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
356 | engines: {node: '>=12'}
357 | cpu: [x64]
358 | os: [win32]
359 |
360 | '@eslint-community/eslint-utils@4.4.0':
361 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
362 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
363 | peerDependencies:
364 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
365 |
366 | '@eslint-community/regexpp@4.11.0':
367 | resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
368 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
369 |
370 | '@eslint/config-array@0.17.0':
371 | resolution: {integrity: sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==}
372 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
373 |
374 | '@eslint/eslintrc@3.1.0':
375 | resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
376 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
377 |
378 | '@eslint/js@9.7.0':
379 | resolution: {integrity: sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==}
380 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
381 |
382 | '@eslint/object-schema@2.1.4':
383 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
384 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
385 |
386 | '@humanwhocodes/module-importer@1.0.1':
387 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
388 | engines: {node: '>=12.22'}
389 |
390 | '@humanwhocodes/retry@0.3.0':
391 | resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
392 | engines: {node: '>=18.18'}
393 |
394 | '@isaacs/cliui@8.0.2':
395 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
396 | engines: {node: '>=12'}
397 |
398 | '@jridgewell/gen-mapping@0.3.5':
399 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
400 | engines: {node: '>=6.0.0'}
401 |
402 | '@jridgewell/resolve-uri@3.1.2':
403 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
404 | engines: {node: '>=6.0.0'}
405 |
406 | '@jridgewell/set-array@1.2.1':
407 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
408 | engines: {node: '>=6.0.0'}
409 |
410 | '@jridgewell/sourcemap-codec@1.5.0':
411 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
412 |
413 | '@jridgewell/trace-mapping@0.3.25':
414 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
415 |
416 | '@jridgewell/trace-mapping@0.3.9':
417 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
418 |
419 | '@nodelib/fs.scandir@2.1.5':
420 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
421 | engines: {node: '>= 8'}
422 |
423 | '@nodelib/fs.stat@2.0.5':
424 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
425 | engines: {node: '>= 8'}
426 |
427 | '@nodelib/fs.walk@1.2.8':
428 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
429 | engines: {node: '>= 8'}
430 |
431 | '@pkgjs/parseargs@0.11.0':
432 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
433 | engines: {node: '>=14'}
434 |
435 | '@remix-run/router@1.18.0':
436 | resolution: {integrity: sha512-L3jkqmqoSVBVKHfpGZmLrex0lxR5SucGA0sUfFzGctehw+S/ggL9L/0NnC5mw6P8HUWpFZ3nQw3cRApjjWx9Sw==}
437 | engines: {node: '>=14.0.0'}
438 |
439 | '@rollup/rollup-android-arm-eabi@4.18.1':
440 | resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==}
441 | cpu: [arm]
442 | os: [android]
443 |
444 | '@rollup/rollup-android-arm64@4.18.1':
445 | resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==}
446 | cpu: [arm64]
447 | os: [android]
448 |
449 | '@rollup/rollup-darwin-arm64@4.18.1':
450 | resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==}
451 | cpu: [arm64]
452 | os: [darwin]
453 |
454 | '@rollup/rollup-darwin-x64@4.18.1':
455 | resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==}
456 | cpu: [x64]
457 | os: [darwin]
458 |
459 | '@rollup/rollup-linux-arm-gnueabihf@4.18.1':
460 | resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==}
461 | cpu: [arm]
462 | os: [linux]
463 |
464 | '@rollup/rollup-linux-arm-musleabihf@4.18.1':
465 | resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==}
466 | cpu: [arm]
467 | os: [linux]
468 |
469 | '@rollup/rollup-linux-arm64-gnu@4.18.1':
470 | resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==}
471 | cpu: [arm64]
472 | os: [linux]
473 |
474 | '@rollup/rollup-linux-arm64-musl@4.18.1':
475 | resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==}
476 | cpu: [arm64]
477 | os: [linux]
478 |
479 | '@rollup/rollup-linux-powerpc64le-gnu@4.18.1':
480 | resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==}
481 | cpu: [ppc64]
482 | os: [linux]
483 |
484 | '@rollup/rollup-linux-riscv64-gnu@4.18.1':
485 | resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==}
486 | cpu: [riscv64]
487 | os: [linux]
488 |
489 | '@rollup/rollup-linux-s390x-gnu@4.18.1':
490 | resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==}
491 | cpu: [s390x]
492 | os: [linux]
493 |
494 | '@rollup/rollup-linux-x64-gnu@4.18.1':
495 | resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==}
496 | cpu: [x64]
497 | os: [linux]
498 |
499 | '@rollup/rollup-linux-x64-musl@4.18.1':
500 | resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==}
501 | cpu: [x64]
502 | os: [linux]
503 |
504 | '@rollup/rollup-win32-arm64-msvc@4.18.1':
505 | resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==}
506 | cpu: [arm64]
507 | os: [win32]
508 |
509 | '@rollup/rollup-win32-ia32-msvc@4.18.1':
510 | resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==}
511 | cpu: [ia32]
512 | os: [win32]
513 |
514 | '@rollup/rollup-win32-x64-msvc@4.18.1':
515 | resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==}
516 | cpu: [x64]
517 | os: [win32]
518 |
519 | '@tsconfig/node10@1.0.11':
520 | resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
521 |
522 | '@tsconfig/node12@1.0.11':
523 | resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
524 |
525 | '@tsconfig/node14@1.0.3':
526 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
527 |
528 | '@tsconfig/node16@1.0.4':
529 | resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
530 |
531 | '@types/babel__core@7.20.5':
532 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
533 |
534 | '@types/babel__generator@7.6.8':
535 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
536 |
537 | '@types/babel__template@7.4.4':
538 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
539 |
540 | '@types/babel__traverse@7.20.6':
541 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
542 |
543 | '@types/estree@1.0.5':
544 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
545 |
546 | '@types/node@22.0.0':
547 | resolution: {integrity: sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==}
548 |
549 | '@types/prop-types@15.7.12':
550 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
551 |
552 | '@types/react-dom@18.3.0':
553 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
554 |
555 | '@types/react@18.3.3':
556 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
557 |
558 | '@vitejs/plugin-react@4.3.1':
559 | resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
560 | engines: {node: ^14.18.0 || >=16.0.0}
561 | peerDependencies:
562 | vite: ^4.2.0 || ^5.0.0
563 |
564 | accepts@1.3.8:
565 | resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
566 | engines: {node: '>= 0.6'}
567 |
568 | acorn-jsx@5.3.2:
569 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
570 | peerDependencies:
571 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
572 |
573 | acorn-walk@8.3.3:
574 | resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
575 | engines: {node: '>=0.4.0'}
576 |
577 | acorn@8.12.1:
578 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
579 | engines: {node: '>=0.4.0'}
580 | hasBin: true
581 |
582 | ajv@6.10.0:
583 | resolution: {integrity: sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==}
584 |
585 | ajv@6.12.6:
586 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
587 |
588 | amqplib@0.5.2:
589 | resolution: {integrity: sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==}
590 | engines: {node: '>=0.8 <=9'}
591 |
592 | ansi-regex@5.0.1:
593 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
594 | engines: {node: '>=8'}
595 |
596 | ansi-regex@6.0.1:
597 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
598 | engines: {node: '>=12'}
599 |
600 | ansi-styles@3.2.1:
601 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
602 | engines: {node: '>=4'}
603 |
604 | ansi-styles@4.3.0:
605 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
606 | engines: {node: '>=8'}
607 |
608 | ansi-styles@6.2.1:
609 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
610 | engines: {node: '>=12'}
611 |
612 | any-promise@1.3.0:
613 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
614 |
615 | anymatch@3.1.3:
616 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
617 | engines: {node: '>= 8'}
618 |
619 | app-root-path@2.1.0:
620 | resolution: {integrity: sha512-z5BqVjscbjmJBybKlICogJR2jCr2q/Ixu7Pvui5D4y97i7FLsJlvEG9XOR/KJRlkxxZz7UaaS2TMwQh1dRJ2dA==}
621 | engines: {node: '>= 4.0.0'}
622 |
623 | arg@4.1.3:
624 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
625 |
626 | arg@5.0.2:
627 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
628 |
629 | argparse@2.0.1:
630 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
631 |
632 | array-buffer-byte-length@1.0.1:
633 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
634 | engines: {node: '>= 0.4'}
635 |
636 | array-flatten@1.1.1:
637 | resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
638 |
639 | array-includes@3.1.8:
640 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
641 | engines: {node: '>= 0.4'}
642 |
643 | array.prototype.findlast@1.2.5:
644 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
645 | engines: {node: '>= 0.4'}
646 |
647 | array.prototype.flat@1.3.2:
648 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
649 | engines: {node: '>= 0.4'}
650 |
651 | array.prototype.flatmap@1.3.2:
652 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
653 | engines: {node: '>= 0.4'}
654 |
655 | array.prototype.reduce@1.0.7:
656 | resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
657 | engines: {node: '>= 0.4'}
658 |
659 | array.prototype.toreversed@1.1.2:
660 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
661 |
662 | array.prototype.tosorted@1.1.4:
663 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
664 | engines: {node: '>= 0.4'}
665 |
666 | arraybuffer.prototype.slice@1.0.3:
667 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
668 | engines: {node: '>= 0.4'}
669 |
670 | asn1@0.2.3:
671 | resolution: {integrity: sha512-6i37w/+EhlWlGUJff3T/Q8u1RGmP5wgbiwYnOnbOqvtrPxT63/sYFyP9RcpxtxGymtfA075IvmOnL7ycNOWl3w==}
672 |
673 | async-limiter@1.0.1:
674 | resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
675 |
676 | async-retry@1.2.3:
677 | resolution: {integrity: sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==}
678 |
679 | autoprefixer@10.4.19:
680 | resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
681 | engines: {node: ^10 || ^12 || >=14}
682 | hasBin: true
683 | peerDependencies:
684 | postcss: ^8.1.0
685 |
686 | available-typed-arrays@1.0.7:
687 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
688 | engines: {node: '>= 0.4'}
689 |
690 | babel-runtime@6.26.0:
691 | resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
692 |
693 | balanced-match@1.0.2:
694 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
695 |
696 | basic-auth@2.0.1:
697 | resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
698 | engines: {node: '>= 0.8'}
699 |
700 | binary-extensions@2.3.0:
701 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
702 | engines: {node: '>=8'}
703 |
704 | bitsyntax@0.0.4:
705 | resolution: {integrity: sha512-Pav3HSZXD2NLQOWfJldY3bpJLt8+HS2nUo5Z1bLLmHg2vCE/cM1qfEvNjlYo7GgYQPneNr715Bh42i01ZHZPvw==}
706 | engines: {node: '>=0.6'}
707 |
708 | bluebird@3.7.2:
709 | resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
710 |
711 | body-parser@1.18.3:
712 | resolution: {integrity: sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ==}
713 | engines: {node: '>= 0.8'}
714 |
715 | brace-expansion@1.1.11:
716 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
717 |
718 | brace-expansion@2.0.1:
719 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
720 |
721 | braces@3.0.3:
722 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
723 | engines: {node: '>=8'}
724 |
725 | browserslist@4.23.2:
726 | resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
727 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
728 | hasBin: true
729 |
730 | buffer-equal-constant-time@1.0.1:
731 | resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
732 |
733 | buffer-more-ints@0.0.2:
734 | resolution: {integrity: sha512-PDgX2QJgUc5+Jb2xAoBFP5MxhtVUmZHR33ak+m/SDxRdCrbnX1BggRIaxiW7ImwfmO4iJeCQKN18ToSXWGjYkA==}
735 |
736 | bytes@3.0.0:
737 | resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
738 | engines: {node: '>= 0.8'}
739 |
740 | call-bind@1.0.7:
741 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
742 | engines: {node: '>= 0.4'}
743 |
744 | callsites@3.1.0:
745 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
746 | engines: {node: '>=6'}
747 |
748 | camelcase-css@2.0.1:
749 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
750 | engines: {node: '>= 6'}
751 |
752 | caniuse-lite@1.0.30001642:
753 | resolution: {integrity: sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==}
754 |
755 | chalk@2.4.1:
756 | resolution: {integrity: sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==}
757 | engines: {node: '>=4'}
758 |
759 | chalk@2.4.2:
760 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
761 | engines: {node: '>=4'}
762 |
763 | chalk@4.1.2:
764 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
765 | engines: {node: '>=10'}
766 |
767 | chokidar@3.6.0:
768 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
769 | engines: {node: '>= 8.10.0'}
770 |
771 | client-only@0.0.1:
772 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
773 |
774 | color-convert@1.9.3:
775 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
776 |
777 | color-convert@2.0.1:
778 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
779 | engines: {node: '>=7.0.0'}
780 |
781 | color-name@1.1.3:
782 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
783 |
784 | color-name@1.1.4:
785 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
786 |
787 | commander@4.1.1:
788 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
789 | engines: {node: '>= 6'}
790 |
791 | commands-events@1.0.4:
792 | resolution: {integrity: sha512-HdP/+1Anoc7z+6L2h7nd4Imz54+LW+BjMGt30riBZrZ3ZeP/8el93wD8Jj8ltAaqVslqNgjX6qlhSBJwuDSmpg==}
793 |
794 | comparejs@1.0.0:
795 | resolution: {integrity: sha512-Ue/Zd9aOucHzHXwaCe4yeHR7jypp7TKrIBZ5yls35nPNiVXlW14npmNVKM1ZaLlQTKZ6/4ewA//gYKHHIwCpOw==}
796 |
797 | compressible@2.0.18:
798 | resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
799 | engines: {node: '>= 0.6'}
800 |
801 | compression@1.7.3:
802 | resolution: {integrity: sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==}
803 | engines: {node: '>= 0.8.0'}
804 |
805 | concat-map@0.0.1:
806 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
807 |
808 | content-disposition@0.5.2:
809 | resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
810 | engines: {node: '>= 0.6'}
811 |
812 | content-type@1.0.4:
813 | resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
814 | engines: {node: '>= 0.6'}
815 |
816 | convert-source-map@2.0.0:
817 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
818 |
819 | cookie-signature@1.0.6:
820 | resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
821 |
822 | cookie@0.3.1:
823 | resolution: {integrity: sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==}
824 | engines: {node: '>= 0.6'}
825 |
826 | core-js@2.6.12:
827 | resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
828 | deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
829 |
830 | core-util-is@1.0.3:
831 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
832 |
833 | cors@2.8.5:
834 | resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
835 | engines: {node: '>= 0.10'}
836 |
837 | create-require@1.1.1:
838 | resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
839 |
840 | cross-spawn@7.0.3:
841 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
842 | engines: {node: '>= 8'}
843 |
844 | crypto2@2.0.0:
845 | resolution: {integrity: sha512-jdXdAgdILldLOF53md25FiQ6ybj2kUFTiRjs7msKTUoZrzgT/M1FPX5dYGJjbbwFls+RJIiZxNTC02DE/8y0ZQ==}
846 |
847 | cssesc@3.0.0:
848 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
849 | engines: {node: '>=4'}
850 | hasBin: true
851 |
852 | csstype@3.1.1:
853 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
854 |
855 | csstype@3.1.3:
856 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
857 |
858 | data-view-buffer@1.0.1:
859 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
860 | engines: {node: '>= 0.4'}
861 |
862 | data-view-byte-length@1.0.1:
863 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
864 | engines: {node: '>= 0.4'}
865 |
866 | data-view-byte-offset@1.0.0:
867 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
868 | engines: {node: '>= 0.4'}
869 |
870 | datasette@1.0.1:
871 | resolution: {integrity: sha512-aJdlCBToEJUP4M57r67r4V6tltwGKa3qetnjpBtXYIlqbX9tM9jsoDMxb4xd9AGjpp3282oHRmqI5Z8TVAU0Mg==}
872 |
873 | debug@2.6.9:
874 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
875 | peerDependencies:
876 | supports-color: '*'
877 | peerDependenciesMeta:
878 | supports-color:
879 | optional: true
880 |
881 | debug@4.3.5:
882 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
883 | engines: {node: '>=6.0'}
884 | peerDependencies:
885 | supports-color: '*'
886 | peerDependenciesMeta:
887 | supports-color:
888 | optional: true
889 |
890 | deep-is@0.1.4:
891 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
892 |
893 | define-data-property@1.1.4:
894 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
895 | engines: {node: '>= 0.4'}
896 |
897 | define-properties@1.2.1:
898 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
899 | engines: {node: '>= 0.4'}
900 |
901 | depd@1.1.2:
902 | resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
903 | engines: {node: '>= 0.6'}
904 |
905 | destroy@1.0.4:
906 | resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
907 |
908 | didyoumean@1.2.2:
909 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
910 |
911 | diff@4.0.2:
912 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
913 | engines: {node: '>=0.3.1'}
914 |
915 | dlv@1.1.3:
916 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
917 |
918 | doctrine@2.1.0:
919 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
920 | engines: {node: '>=0.10.0'}
921 |
922 | draht@1.0.1:
923 | resolution: {integrity: sha512-yNNHL864dniNmIE9ZKD++mKypiAUAvVZtyV0QrbXH/ak3ebzFqo5xsmRBRqV8pZVhImOSBiyq500Wcmrf44zAg==}
924 |
925 | eastasianwidth@0.2.0:
926 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
927 |
928 | ecdsa-sig-formatter@1.0.11:
929 | resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==}
930 |
931 | ee-first@1.1.1:
932 | resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
933 |
934 | electron-to-chromium@1.4.828:
935 | resolution: {integrity: sha512-QOIJiWpQJDHAVO4P58pwb133Cwee0nbvy/MV1CwzZVGpkH1RX33N3vsaWRCpR6bF63AAq366neZrRTu7Qlsbbw==}
936 |
937 | emoji-regex@8.0.0:
938 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
939 |
940 | emoji-regex@9.2.2:
941 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
942 |
943 | encodeurl@1.0.2:
944 | resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
945 | engines: {node: '>= 0.8'}
946 |
947 | es-abstract@1.23.3:
948 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
949 | engines: {node: '>= 0.4'}
950 |
951 | es-array-method-boxes-properly@1.0.0:
952 | resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
953 |
954 | es-define-property@1.0.0:
955 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
956 | engines: {node: '>= 0.4'}
957 |
958 | es-errors@1.3.0:
959 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
960 | engines: {node: '>= 0.4'}
961 |
962 | es-iterator-helpers@1.0.19:
963 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
964 | engines: {node: '>= 0.4'}
965 |
966 | es-object-atoms@1.0.0:
967 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
968 | engines: {node: '>= 0.4'}
969 |
970 | es-set-tostringtag@2.0.3:
971 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
972 | engines: {node: '>= 0.4'}
973 |
974 | es-shim-unscopables@1.0.2:
975 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
976 |
977 | es-to-primitive@1.2.1:
978 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
979 | engines: {node: '>= 0.4'}
980 |
981 | esbuild@0.21.5:
982 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
983 | engines: {node: '>=12'}
984 | hasBin: true
985 |
986 | escalade@3.1.2:
987 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
988 | engines: {node: '>=6'}
989 |
990 | escape-html@1.0.3:
991 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
992 |
993 | escape-string-regexp@1.0.5:
994 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
995 | engines: {node: '>=0.8.0'}
996 |
997 | escape-string-regexp@4.0.0:
998 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
999 | engines: {node: '>=10'}
1000 |
1001 | eslint-plugin-react-hooks@4.6.2:
1002 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
1003 | engines: {node: '>=10'}
1004 | peerDependencies:
1005 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1006 |
1007 | eslint-plugin-react-refresh@0.4.8:
1008 | resolution: {integrity: sha512-MIKAclwaDFIiYtVBLzDdm16E+Ty4GwhB6wZlCAG1R3Ur+F9Qbo6PRxpA5DK7XtDgm+WlCoAY2WxAwqhmIDHg6Q==}
1009 | peerDependencies:
1010 | eslint: '>=7'
1011 |
1012 | eslint-plugin-react@7.34.4:
1013 | resolution: {integrity: sha512-Np+jo9bUwJNxCsT12pXtrGhJgT3T44T1sHhn1Ssr42XFn8TES0267wPGo5nNrMHi8qkyimDAX2BUmkf9pSaVzA==}
1014 | engines: {node: '>=4'}
1015 | peerDependencies:
1016 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1017 |
1018 | eslint-scope@8.0.2:
1019 | resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
1020 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1021 |
1022 | eslint-visitor-keys@3.4.3:
1023 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1024 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1025 |
1026 | eslint-visitor-keys@4.0.0:
1027 | resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
1028 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1029 |
1030 | eslint@9.7.0:
1031 | resolution: {integrity: sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==}
1032 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1033 | hasBin: true
1034 |
1035 | espree@10.1.0:
1036 | resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
1037 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1038 |
1039 | esquery@1.6.0:
1040 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
1041 | engines: {node: '>=0.10'}
1042 |
1043 | esrecurse@4.3.0:
1044 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1045 | engines: {node: '>=4.0'}
1046 |
1047 | estraverse@5.3.0:
1048 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1049 | engines: {node: '>=4.0'}
1050 |
1051 | esutils@2.0.3:
1052 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1053 | engines: {node: '>=0.10.0'}
1054 |
1055 | etag@1.8.1:
1056 | resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
1057 | engines: {node: '>= 0.6'}
1058 |
1059 | eventemitter2@5.0.1:
1060 | resolution: {integrity: sha512-5EM1GHXycJBS6mauYAbVKT1cVs7POKWb2NXD4Vyt8dDqeZa7LaDK1/sjtL+Zb0lzTpSNil4596Dyu97hz37QLg==}
1061 |
1062 | express@4.16.4:
1063 | resolution: {integrity: sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==}
1064 | engines: {node: '>= 0.10.0'}
1065 |
1066 | fast-deep-equal@2.0.1:
1067 | resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
1068 |
1069 | fast-deep-equal@3.1.3:
1070 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1071 |
1072 | fast-glob@3.3.2:
1073 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
1074 | engines: {node: '>=8.6.0'}
1075 |
1076 | fast-json-stable-stringify@2.1.0:
1077 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1078 |
1079 | fast-levenshtein@2.0.6:
1080 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1081 |
1082 | fastq@1.17.1:
1083 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
1084 |
1085 | file-entry-cache@8.0.0:
1086 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1087 | engines: {node: '>=16.0.0'}
1088 |
1089 | fill-range@7.1.1:
1090 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1091 | engines: {node: '>=8'}
1092 |
1093 | finalhandler@1.1.1:
1094 | resolution: {integrity: sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==}
1095 | engines: {node: '>= 0.8'}
1096 |
1097 | find-root@1.1.0:
1098 | resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
1099 |
1100 | find-up@5.0.0:
1101 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1102 | engines: {node: '>=10'}
1103 |
1104 | flaschenpost@1.1.3:
1105 | resolution: {integrity: sha512-1VAYPvDsVBGFJyUrOa/6clnJwZYC3qVq9nJLcypy6lvaaNbo1wOQiH8HQ+4Fw/k51pVG7JHzSf5epb8lmIW86g==}
1106 | hasBin: true
1107 |
1108 | flat-cache@4.0.1:
1109 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1110 | engines: {node: '>=16'}
1111 |
1112 | flatted@3.3.1:
1113 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
1114 |
1115 | for-each@0.3.3:
1116 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1117 |
1118 | foreground-child@3.2.1:
1119 | resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
1120 | engines: {node: '>=14'}
1121 |
1122 | formats@1.0.0:
1123 | resolution: {integrity: sha512-For0Y8egwEK96JgJo4NONErPhtl7H2QzeB2NYGmzeGeJ8a1JZqPgLYOtM3oJRCYhmgsdDFd6KGRYyfe37XY4Yg==}
1124 |
1125 | forwarded@0.2.0:
1126 | resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
1127 | engines: {node: '>= 0.6'}
1128 |
1129 | fraction.js@4.3.7:
1130 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
1131 |
1132 | fresh@0.5.2:
1133 | resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
1134 | engines: {node: '>= 0.6'}
1135 |
1136 | fsevents@2.3.3:
1137 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1138 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1139 | os: [darwin]
1140 |
1141 | function-bind@1.1.2:
1142 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1143 |
1144 | function.prototype.name@1.1.6:
1145 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
1146 | engines: {node: '>= 0.4'}
1147 |
1148 | functions-have-names@1.2.3:
1149 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1150 |
1151 | gensync@1.0.0-beta.2:
1152 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1153 | engines: {node: '>=6.9.0'}
1154 |
1155 | get-intrinsic@1.2.4:
1156 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
1157 | engines: {node: '>= 0.4'}
1158 |
1159 | get-own-enumerable-property-symbols@3.0.2:
1160 | resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
1161 |
1162 | get-symbol-description@1.0.2:
1163 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
1164 | engines: {node: '>= 0.4'}
1165 |
1166 | glob-parent@5.1.2:
1167 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1168 | engines: {node: '>= 6'}
1169 |
1170 | glob-parent@6.0.2:
1171 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1172 | engines: {node: '>=10.13.0'}
1173 |
1174 | glob-to-regexp@0.4.1:
1175 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
1176 |
1177 | glob@10.4.5:
1178 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
1179 | hasBin: true
1180 |
1181 | globals@11.12.0:
1182 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
1183 | engines: {node: '>=4'}
1184 |
1185 | globals@14.0.0:
1186 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1187 | engines: {node: '>=18'}
1188 |
1189 | globalthis@1.0.4:
1190 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
1191 | engines: {node: '>= 0.4'}
1192 |
1193 | gopd@1.0.1:
1194 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1195 |
1196 | has-bigints@1.0.2:
1197 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1198 |
1199 | has-flag@3.0.0:
1200 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
1201 | engines: {node: '>=4'}
1202 |
1203 | has-flag@4.0.0:
1204 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1205 | engines: {node: '>=8'}
1206 |
1207 | has-property-descriptors@1.0.2:
1208 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
1209 |
1210 | has-proto@1.0.3:
1211 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
1212 | engines: {node: '>= 0.4'}
1213 |
1214 | has-symbols@1.0.3:
1215 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1216 | engines: {node: '>= 0.4'}
1217 |
1218 | has-tostringtag@1.0.2:
1219 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1220 | engines: {node: '>= 0.4'}
1221 |
1222 | hase@2.0.0:
1223 | resolution: {integrity: sha512-L83pBR/oZvQQNjv4kw9aUpTqBxERPiY7B42jsmkt1VDeUaRVhYkEIKzkCqrppjtxHe2EZqzZJzuhMXsWsxYIsw==}
1224 |
1225 | hasown@2.0.2:
1226 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1227 | engines: {node: '>= 0.4'}
1228 |
1229 | http-errors@1.6.3:
1230 | resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
1231 | engines: {node: '>= 0.6'}
1232 |
1233 | iconv-lite@0.4.23:
1234 | resolution: {integrity: sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==}
1235 | engines: {node: '>=0.10.0'}
1236 |
1237 | ignore@5.3.1:
1238 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
1239 | engines: {node: '>= 4'}
1240 |
1241 | import-fresh@3.3.0:
1242 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1243 | engines: {node: '>=6'}
1244 |
1245 | imurmurhash@0.1.4:
1246 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1247 | engines: {node: '>=0.8.19'}
1248 |
1249 | inherits@2.0.3:
1250 | resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
1251 |
1252 | inherits@2.0.4:
1253 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1254 |
1255 | internal-slot@1.0.7:
1256 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
1257 | engines: {node: '>= 0.4'}
1258 |
1259 | ipaddr.js@1.9.1:
1260 | resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
1261 | engines: {node: '>= 0.10'}
1262 |
1263 | is-array-buffer@3.0.4:
1264 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
1265 | engines: {node: '>= 0.4'}
1266 |
1267 | is-async-function@2.0.0:
1268 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
1269 | engines: {node: '>= 0.4'}
1270 |
1271 | is-bigint@1.0.4:
1272 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1273 |
1274 | is-binary-path@2.1.0:
1275 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1276 | engines: {node: '>=8'}
1277 |
1278 | is-boolean-object@1.1.2:
1279 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1280 | engines: {node: '>= 0.4'}
1281 |
1282 | is-callable@1.2.7:
1283 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1284 | engines: {node: '>= 0.4'}
1285 |
1286 | is-core-module@2.14.0:
1287 | resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==}
1288 | engines: {node: '>= 0.4'}
1289 |
1290 | is-data-view@1.0.1:
1291 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
1292 | engines: {node: '>= 0.4'}
1293 |
1294 | is-date-object@1.0.5:
1295 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1296 | engines: {node: '>= 0.4'}
1297 |
1298 | is-extglob@2.1.1:
1299 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1300 | engines: {node: '>=0.10.0'}
1301 |
1302 | is-finalizationregistry@1.0.2:
1303 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
1304 |
1305 | is-fullwidth-code-point@3.0.0:
1306 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1307 | engines: {node: '>=8'}
1308 |
1309 | is-generator-function@1.0.10:
1310 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
1311 | engines: {node: '>= 0.4'}
1312 |
1313 | is-glob@4.0.3:
1314 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1315 | engines: {node: '>=0.10.0'}
1316 |
1317 | is-map@2.0.3:
1318 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1319 | engines: {node: '>= 0.4'}
1320 |
1321 | is-negative-zero@2.0.3:
1322 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1323 | engines: {node: '>= 0.4'}
1324 |
1325 | is-number-object@1.0.7:
1326 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1327 | engines: {node: '>= 0.4'}
1328 |
1329 | is-number@7.0.0:
1330 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1331 | engines: {node: '>=0.12.0'}
1332 |
1333 | is-obj@1.0.1:
1334 | resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
1335 | engines: {node: '>=0.10.0'}
1336 |
1337 | is-path-inside@3.0.3:
1338 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1339 | engines: {node: '>=8'}
1340 |
1341 | is-regex@1.1.4:
1342 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1343 | engines: {node: '>= 0.4'}
1344 |
1345 | is-regexp@1.0.0:
1346 | resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
1347 | engines: {node: '>=0.10.0'}
1348 |
1349 | is-set@2.0.3:
1350 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1351 | engines: {node: '>= 0.4'}
1352 |
1353 | is-shared-array-buffer@1.0.3:
1354 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1355 | engines: {node: '>= 0.4'}
1356 |
1357 | is-string@1.0.7:
1358 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1359 | engines: {node: '>= 0.4'}
1360 |
1361 | is-symbol@1.0.4:
1362 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1363 | engines: {node: '>= 0.4'}
1364 |
1365 | is-typed-array@1.1.13:
1366 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1367 | engines: {node: '>= 0.4'}
1368 |
1369 | is-weakmap@2.0.2:
1370 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1371 | engines: {node: '>= 0.4'}
1372 |
1373 | is-weakref@1.0.2:
1374 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1375 |
1376 | is-weakset@2.0.3:
1377 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1378 | engines: {node: '>= 0.4'}
1379 |
1380 | isarray@0.0.1:
1381 | resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
1382 |
1383 | isarray@2.0.5:
1384 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1385 |
1386 | isexe@2.0.0:
1387 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1388 |
1389 | iterator.prototype@1.1.2:
1390 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
1391 |
1392 | jackspeak@3.4.3:
1393 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
1394 |
1395 | jiti@1.21.6:
1396 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
1397 | hasBin: true
1398 |
1399 | js-cookie@3.0.5:
1400 | resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
1401 | engines: {node: '>=14'}
1402 |
1403 | js-tokens@4.0.0:
1404 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1405 |
1406 | js-yaml@4.1.0:
1407 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1408 | hasBin: true
1409 |
1410 | jsesc@2.5.2:
1411 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
1412 | engines: {node: '>=4'}
1413 | hasBin: true
1414 |
1415 | json-buffer@3.0.1:
1416 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1417 |
1418 | json-lines@1.0.0:
1419 | resolution: {integrity: sha512-ytuLZb4RBQb3bTRsG/QBenyIo5oHLpjeCVph3s2NnoAsZE9K6h+uR+OWpEOWV1UeHdX63tYctGppBpGAc+JNMA==}
1420 |
1421 | json-schema-traverse@0.4.1:
1422 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1423 |
1424 | json-stable-stringify-without-jsonify@1.0.1:
1425 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1426 |
1427 | json5@2.2.3:
1428 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1429 | engines: {node: '>=6'}
1430 | hasBin: true
1431 |
1432 | jsonwebtoken@8.5.0:
1433 | resolution: {integrity: sha512-IqEycp0znWHNA11TpYi77bVgyBO/pGESDh7Ajhas+u0ttkGkKYIIAjniL4Bw5+oVejVF+SYkaI7XKfwCCyeTuA==}
1434 | engines: {node: '>=4', npm: '>=1.4.28'}
1435 |
1436 | jsx-ast-utils@3.3.5:
1437 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1438 | engines: {node: '>=4.0'}
1439 |
1440 | jwa@1.4.1:
1441 | resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
1442 |
1443 | jws@3.2.2:
1444 | resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
1445 |
1446 | keyv@4.5.4:
1447 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1448 |
1449 | levn@0.4.1:
1450 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1451 | engines: {node: '>= 0.8.0'}
1452 |
1453 | lilconfig@2.1.0:
1454 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1455 | engines: {node: '>=10'}
1456 |
1457 | lilconfig@3.1.2:
1458 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
1459 | engines: {node: '>=14'}
1460 |
1461 | limes@2.0.0:
1462 | resolution: {integrity: sha512-evWD0pnTgPX7QueaSoJl5JBUL30T1ZVzo34ke97tIKmeagqhBTYK/JkKL0vtG3MpNApw8ZY9TlbybfwEz9knBA==}
1463 |
1464 | lines-and-columns@1.2.4:
1465 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1466 |
1467 | locate-path@6.0.0:
1468 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1469 | engines: {node: '>=10'}
1470 |
1471 | lodash.includes@4.3.0:
1472 | resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
1473 |
1474 | lodash.isboolean@3.0.3:
1475 | resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
1476 |
1477 | lodash.isinteger@4.0.4:
1478 | resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
1479 |
1480 | lodash.isnumber@3.0.3:
1481 | resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
1482 |
1483 | lodash.isplainobject@4.0.6:
1484 | resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
1485 |
1486 | lodash.isstring@4.0.1:
1487 | resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
1488 |
1489 | lodash.merge@4.6.2:
1490 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1491 |
1492 | lodash.once@4.1.1:
1493 | resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
1494 |
1495 | lodash@4.17.11:
1496 | resolution: {integrity: sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==}
1497 |
1498 | lodash@4.17.5:
1499 | resolution: {integrity: sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==}
1500 |
1501 | loose-envify@1.4.0:
1502 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1503 | hasBin: true
1504 |
1505 | lru-cache@10.4.3:
1506 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1507 |
1508 | lru-cache@5.1.1:
1509 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1510 |
1511 | lusca@1.6.1:
1512 | resolution: {integrity: sha512-+JzvUMH/rsE/4XfHdDOl70bip0beRcHSviYATQM0vtls59uVtdn1JMu4iD7ZShBpAmFG8EnaA+PrYG9sECMIOQ==}
1513 | engines: {node: '>=0.8.x'}
1514 |
1515 | make-error@1.3.6:
1516 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
1517 |
1518 | media-typer@0.3.0:
1519 | resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
1520 | engines: {node: '>= 0.6'}
1521 |
1522 | merge-descriptors@1.0.1:
1523 | resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
1524 |
1525 | merge2@1.4.1:
1526 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1527 | engines: {node: '>= 8'}
1528 |
1529 | methods@1.1.2:
1530 | resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
1531 | engines: {node: '>= 0.6'}
1532 |
1533 | micromatch@4.0.7:
1534 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
1535 | engines: {node: '>=8.6'}
1536 |
1537 | mime-db@1.52.0:
1538 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1539 | engines: {node: '>= 0.6'}
1540 |
1541 | mime-db@1.53.0:
1542 | resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
1543 | engines: {node: '>= 0.6'}
1544 |
1545 | mime-types@2.1.35:
1546 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1547 | engines: {node: '>= 0.6'}
1548 |
1549 | mime@1.4.1:
1550 | resolution: {integrity: sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==}
1551 | hasBin: true
1552 |
1553 | minimatch@3.1.2:
1554 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1555 |
1556 | minimatch@9.0.5:
1557 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1558 | engines: {node: '>=16 || 14 >=14.17'}
1559 |
1560 | minipass@7.1.2:
1561 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1562 | engines: {node: '>=16 || 14 >=14.17'}
1563 |
1564 | moment@2.22.2:
1565 | resolution: {integrity: sha512-LRvkBHaJGnrcWvqsElsOhHCzj8mU39wLx5pQ0pc6s153GynCTsPdGdqsVNKAQD9sKnWj11iF7TZx9fpLwdD3fw==}
1566 |
1567 | morgan@1.9.1:
1568 | resolution: {integrity: sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==}
1569 | engines: {node: '>= 0.8.0'}
1570 |
1571 | ms@2.0.0:
1572 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
1573 |
1574 | ms@2.1.2:
1575 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1576 |
1577 | mz@2.7.0:
1578 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1579 |
1580 | nanoid@3.3.7:
1581 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1582 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1583 | hasBin: true
1584 |
1585 | natural-compare@1.4.0:
1586 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1587 |
1588 | negotiator@0.6.3:
1589 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
1590 | engines: {node: '>= 0.6'}
1591 |
1592 | nocache@2.0.0:
1593 | resolution: {integrity: sha512-YdKcy2x0dDwOh+8BEuHvA+mnOKAhmMQDgKBOCUGaLpewdmsRYguYZSom3yA+/OrE61O/q+NMQANnun65xpI1Hw==}
1594 |
1595 | node-releases@2.0.14:
1596 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
1597 |
1598 | node-rsa@0.4.2:
1599 | resolution: {integrity: sha512-Bvso6Zi9LY4otIZefYrscsUpo2mUpiAVIEmSZV2q41sP8tHZoert3Yu6zv4f/RXJqMNZQKCtnhDugIuCma23YA==}
1600 |
1601 | node-statsd@0.1.1:
1602 | resolution: {integrity: sha512-QDf6R8VXF56QVe1boek8an/Rb3rSNaxoFWb7Elpsv2m1+Noua1yy0F1FpKpK5VluF8oymWM4w764A4KsYL4pDg==}
1603 | engines: {node: '>=0.1.97'}
1604 |
1605 | normalize-path@3.0.0:
1606 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1607 | engines: {node: '>=0.10.0'}
1608 |
1609 | normalize-range@0.1.2:
1610 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
1611 | engines: {node: '>=0.10.0'}
1612 |
1613 | object-assign@4.1.1:
1614 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1615 | engines: {node: '>=0.10.0'}
1616 |
1617 | object-hash@3.0.0:
1618 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1619 | engines: {node: '>= 6'}
1620 |
1621 | object-inspect@1.13.2:
1622 | resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
1623 | engines: {node: '>= 0.4'}
1624 |
1625 | object-keys@1.1.1:
1626 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1627 | engines: {node: '>= 0.4'}
1628 |
1629 | object.assign@4.1.5:
1630 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1631 | engines: {node: '>= 0.4'}
1632 |
1633 | object.entries@1.1.8:
1634 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1635 | engines: {node: '>= 0.4'}
1636 |
1637 | object.fromentries@2.0.8:
1638 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1639 | engines: {node: '>= 0.4'}
1640 |
1641 | object.getownpropertydescriptors@2.1.8:
1642 | resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
1643 | engines: {node: '>= 0.8'}
1644 |
1645 | object.values@1.2.0:
1646 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1647 | engines: {node: '>= 0.4'}
1648 |
1649 | on-finished@2.3.0:
1650 | resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
1651 | engines: {node: '>= 0.8'}
1652 |
1653 | on-headers@1.0.2:
1654 | resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
1655 | engines: {node: '>= 0.8'}
1656 |
1657 | optionator@0.9.4:
1658 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1659 | engines: {node: '>= 0.8.0'}
1660 |
1661 | p-limit@3.1.0:
1662 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1663 | engines: {node: '>=10'}
1664 |
1665 | p-locate@5.0.0:
1666 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1667 | engines: {node: '>=10'}
1668 |
1669 | package-json-from-dist@1.0.0:
1670 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
1671 |
1672 | parent-module@1.0.1:
1673 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1674 | engines: {node: '>=6'}
1675 |
1676 | parseurl@1.3.3:
1677 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
1678 | engines: {node: '>= 0.8'}
1679 |
1680 | partof@1.0.0:
1681 | resolution: {integrity: sha512-+TXdhKCySpJDynCxgAPoGVyAkiK3QPusQ63/BdU5t68QcYzyU6zkP/T7F3gkMQBVUYqdWEADKa6Kx5zg8QIKrg==}
1682 |
1683 | path-exists@4.0.0:
1684 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1685 | engines: {node: '>=8'}
1686 |
1687 | path-key@3.1.1:
1688 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1689 | engines: {node: '>=8'}
1690 |
1691 | path-parse@1.0.7:
1692 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1693 |
1694 | path-scurry@1.11.1:
1695 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1696 | engines: {node: '>=16 || 14 >=14.18'}
1697 |
1698 | path-to-regexp@0.1.7:
1699 | resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
1700 |
1701 | picocolors@1.0.1:
1702 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
1703 |
1704 | picomatch@2.3.1:
1705 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1706 | engines: {node: '>=8.6'}
1707 |
1708 | pify@2.3.0:
1709 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1710 | engines: {node: '>=0.10.0'}
1711 |
1712 | pirates@4.0.6:
1713 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1714 | engines: {node: '>= 6'}
1715 |
1716 | possible-typed-array-names@1.0.0:
1717 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1718 | engines: {node: '>= 0.4'}
1719 |
1720 | postcss-import@15.1.0:
1721 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1722 | engines: {node: '>=14.0.0'}
1723 | peerDependencies:
1724 | postcss: ^8.0.0
1725 |
1726 | postcss-js@4.0.1:
1727 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1728 | engines: {node: ^12 || ^14 || >= 16}
1729 | peerDependencies:
1730 | postcss: ^8.4.21
1731 |
1732 | postcss-load-config@4.0.2:
1733 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1734 | engines: {node: '>= 14'}
1735 | peerDependencies:
1736 | postcss: '>=8.0.9'
1737 | ts-node: '>=9.0.0'
1738 | peerDependenciesMeta:
1739 | postcss:
1740 | optional: true
1741 | ts-node:
1742 | optional: true
1743 |
1744 | postcss-nested@6.2.0:
1745 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1746 | engines: {node: '>=12.0'}
1747 | peerDependencies:
1748 | postcss: ^8.2.14
1749 |
1750 | postcss-selector-parser@6.1.1:
1751 | resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
1752 | engines: {node: '>=4'}
1753 |
1754 | postcss-value-parser@4.2.0:
1755 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1756 |
1757 | postcss@8.4.40:
1758 | resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
1759 | engines: {node: ^10 || ^12 || >=14}
1760 |
1761 | prelude-ls@1.2.1:
1762 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1763 | engines: {node: '>= 0.8.0'}
1764 |
1765 | prettier@3.3.3:
1766 | resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
1767 | engines: {node: '>=14'}
1768 | hasBin: true
1769 |
1770 | processenv@1.1.0:
1771 | resolution: {integrity: sha512-SymqIsn8GjEUy8nG7HiyEjgbfk1xFosRIakUX1NHLpriq3vVpKniGrr9RdMWCaGYWByIovbRt2f/WvmP/IOApQ==}
1772 |
1773 | prop-types@15.8.1:
1774 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1775 |
1776 | proxy-addr@2.0.7:
1777 | resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
1778 | engines: {node: '>= 0.10'}
1779 |
1780 | punycode@2.3.1:
1781 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1782 | engines: {node: '>=6'}
1783 |
1784 | qs@6.5.2:
1785 | resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==}
1786 | engines: {node: '>=0.6'}
1787 |
1788 | queue-microtask@1.2.3:
1789 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1790 |
1791 | range-parser@1.2.1:
1792 | resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
1793 | engines: {node: '>= 0.6'}
1794 |
1795 | raw-body@2.3.3:
1796 | resolution: {integrity: sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==}
1797 | engines: {node: '>= 0.8'}
1798 |
1799 | react-dom@18.3.1:
1800 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
1801 | peerDependencies:
1802 | react: ^18.3.1
1803 |
1804 | react-is@16.13.1:
1805 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1806 |
1807 | react-refresh@0.14.2:
1808 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
1809 | engines: {node: '>=0.10.0'}
1810 |
1811 | react-router-dom@6.25.1:
1812 | resolution: {integrity: sha512-0tUDpbFvk35iv+N89dWNrJp+afLgd+y4VtorJZuOCXK0kkCWjEvb3vTJM++SYvMEpbVwXKf3FjeVveVEb6JpDQ==}
1813 | engines: {node: '>=14.0.0'}
1814 | peerDependencies:
1815 | react: '>=16.8'
1816 | react-dom: '>=16.8'
1817 |
1818 | react-router@6.25.1:
1819 | resolution: {integrity: sha512-u8ELFr5Z6g02nUtpPAggP73Jigj1mRePSwhS/2nkTrlPU5yEkH1vYzWNyvSnSzeeE2DNqWdH+P8OhIh9wuXhTw==}
1820 | engines: {node: '>=14.0.0'}
1821 | peerDependencies:
1822 | react: '>=16.8'
1823 |
1824 | react@18.3.1:
1825 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
1826 | engines: {node: '>=0.10.0'}
1827 |
1828 | read-cache@1.0.0:
1829 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1830 |
1831 | readable-stream@1.1.14:
1832 | resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
1833 |
1834 | readable-stream@3.6.2:
1835 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
1836 | engines: {node: '>= 6'}
1837 |
1838 | readdirp@3.6.0:
1839 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1840 | engines: {node: '>=8.10.0'}
1841 |
1842 | reflect.getprototypeof@1.0.6:
1843 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
1844 | engines: {node: '>= 0.4'}
1845 |
1846 | regenerator-runtime@0.11.1:
1847 | resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
1848 |
1849 | regenerator-runtime@0.12.1:
1850 | resolution: {integrity: sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==}
1851 |
1852 | regexp.prototype.flags@1.5.2:
1853 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
1854 | engines: {node: '>= 0.4'}
1855 |
1856 | resolve-from@4.0.0:
1857 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1858 | engines: {node: '>=4'}
1859 |
1860 | resolve@1.22.8:
1861 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
1862 | hasBin: true
1863 |
1864 | resolve@2.0.0-next.5:
1865 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1866 | hasBin: true
1867 |
1868 | retry@0.12.0:
1869 | resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
1870 | engines: {node: '>= 4'}
1871 |
1872 | reusify@1.0.4:
1873 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1874 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1875 |
1876 | rollup@4.18.1:
1877 | resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==}
1878 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1879 | hasBin: true
1880 |
1881 | run-parallel@1.2.0:
1882 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1883 |
1884 | safe-array-concat@1.1.2:
1885 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
1886 | engines: {node: '>=0.4'}
1887 |
1888 | safe-buffer@5.1.2:
1889 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
1890 |
1891 | safe-buffer@5.2.1:
1892 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
1893 |
1894 | safe-regex-test@1.0.3:
1895 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
1896 | engines: {node: '>= 0.4'}
1897 |
1898 | safer-buffer@2.1.2:
1899 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
1900 |
1901 | scheduler@0.23.2:
1902 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
1903 |
1904 | semver@5.7.2:
1905 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
1906 | hasBin: true
1907 |
1908 | semver@6.3.1:
1909 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1910 | hasBin: true
1911 |
1912 | send@0.16.2:
1913 | resolution: {integrity: sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==}
1914 | engines: {node: '>= 0.8.0'}
1915 |
1916 | serve-static@1.13.2:
1917 | resolution: {integrity: sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==}
1918 | engines: {node: '>= 0.8.0'}
1919 |
1920 | set-function-length@1.2.2:
1921 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1922 | engines: {node: '>= 0.4'}
1923 |
1924 | set-function-name@2.0.2:
1925 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1926 | engines: {node: '>= 0.4'}
1927 |
1928 | setprototypeof@1.1.0:
1929 | resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
1930 |
1931 | sha-1@0.1.1:
1932 | resolution: {integrity: sha512-dexizf3hB7d4Jq6Cd0d/NYQiqgEqIfZIpuMfwPfvSb6h06DZKmHyUe55jYwpHC12R42wpqXO6ouhiBpRzIcD/g==}
1933 |
1934 | shebang-command@2.0.0:
1935 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1936 | engines: {node: '>=8'}
1937 |
1938 | shebang-regex@3.0.0:
1939 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1940 | engines: {node: '>=8'}
1941 |
1942 | side-channel@1.0.6:
1943 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
1944 | engines: {node: '>= 0.4'}
1945 |
1946 | signal-exit@4.1.0:
1947 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1948 | engines: {node: '>=14'}
1949 |
1950 | source-map-js@1.2.0:
1951 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
1952 | engines: {node: '>=0.10.0'}
1953 |
1954 | split2@3.0.0:
1955 | resolution: {integrity: sha512-Cp7G+nUfKJyHCrAI8kze3Q00PFGEG1pMgrAlTFlDbn+GW24evSZHJuMl+iUJx1w/NTRDeBiTgvwnf6YOt94FMw==}
1956 |
1957 | stack-trace@0.0.10:
1958 | resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
1959 |
1960 | statuses@1.4.0:
1961 | resolution: {integrity: sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==}
1962 | engines: {node: '>= 0.6'}
1963 |
1964 | statuses@1.5.0:
1965 | resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
1966 | engines: {node: '>= 0.6'}
1967 |
1968 | std-env@3.7.0:
1969 | resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
1970 |
1971 | stethoskop@1.0.0:
1972 | resolution: {integrity: sha512-4JnZ+UmTs9SFfDjSHFlD/EoXcb1bfwntkt4h1ipNGrpxtRzmHTxOmdquCJvIrVu608Um7a09cGX0ZSOSllWJNQ==}
1973 |
1974 | string-width@4.2.3:
1975 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1976 | engines: {node: '>=8'}
1977 |
1978 | string-width@5.1.2:
1979 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1980 | engines: {node: '>=12'}
1981 |
1982 | string.prototype.matchall@4.0.11:
1983 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
1984 | engines: {node: '>= 0.4'}
1985 |
1986 | string.prototype.repeat@1.0.0:
1987 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
1988 |
1989 | string.prototype.trim@1.2.9:
1990 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
1991 | engines: {node: '>= 0.4'}
1992 |
1993 | string.prototype.trimend@1.0.8:
1994 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
1995 |
1996 | string.prototype.trimstart@1.0.8:
1997 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1998 | engines: {node: '>= 0.4'}
1999 |
2000 | string_decoder@0.10.31:
2001 | resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
2002 |
2003 | string_decoder@1.3.0:
2004 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
2005 |
2006 | stringify-object@3.3.0:
2007 | resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
2008 | engines: {node: '>=4'}
2009 |
2010 | strip-ansi@6.0.1:
2011 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2012 | engines: {node: '>=8'}
2013 |
2014 | strip-ansi@7.1.0:
2015 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
2016 | engines: {node: '>=12'}
2017 |
2018 | strip-json-comments@3.1.1:
2019 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2020 | engines: {node: '>=8'}
2021 |
2022 | sucrase@3.35.0:
2023 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
2024 | engines: {node: '>=16 || 14 >=14.17'}
2025 | hasBin: true
2026 |
2027 | supports-color@5.5.0:
2028 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
2029 | engines: {node: '>=4'}
2030 |
2031 | supports-color@7.2.0:
2032 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2033 | engines: {node: '>=8'}
2034 |
2035 | supports-preserve-symlinks-flag@1.0.0:
2036 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2037 | engines: {node: '>= 0.4'}
2038 |
2039 | swr@2.2.5:
2040 | resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==}
2041 | peerDependencies:
2042 | react: ^16.11.0 || ^17.0.0 || ^18.0.0
2043 |
2044 | tailwind@4.0.0:
2045 | resolution: {integrity: sha512-LlUNoD/5maFG1h5kQ6/hXfFPdcnYw+1Z7z+kUD/W/E71CUMwcnrskxiBM8c3G8wmPsD1VvCuqGYMHviI8+yrmg==}
2046 |
2047 | tailwindcss@3.4.7:
2048 | resolution: {integrity: sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==}
2049 | engines: {node: '>=14.0.0'}
2050 | hasBin: true
2051 |
2052 | text-table@0.2.0:
2053 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2054 |
2055 | thenify-all@1.6.0:
2056 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
2057 | engines: {node: '>=0.8'}
2058 |
2059 | thenify@3.3.1:
2060 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
2061 |
2062 | timer2@1.0.0:
2063 | resolution: {integrity: sha512-UOZql+P2ET0da+B7V3/RImN3IhC5ghb+9cpecfUhmYGIm0z73dDr3A781nBLnFYmRzeT1AmoT4w9Lgr8n7n7xg==}
2064 |
2065 | to-fast-properties@2.0.0:
2066 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
2067 | engines: {node: '>=4'}
2068 |
2069 | to-regex-range@5.0.1:
2070 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2071 | engines: {node: '>=8.0'}
2072 |
2073 | ts-interface-checker@0.1.13:
2074 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
2075 |
2076 | ts-node@10.9.2:
2077 | resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
2078 | hasBin: true
2079 | peerDependencies:
2080 | '@swc/core': '>=1.2.50'
2081 | '@swc/wasm': '>=1.2.50'
2082 | '@types/node': '*'
2083 | typescript: '>=2.7'
2084 | peerDependenciesMeta:
2085 | '@swc/core':
2086 | optional: true
2087 | '@swc/wasm':
2088 | optional: true
2089 |
2090 | tslib@2.4.1:
2091 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
2092 |
2093 | tsscmp@1.0.6:
2094 | resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
2095 | engines: {node: '>=0.6.x'}
2096 |
2097 | type-check@0.4.0:
2098 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2099 | engines: {node: '>= 0.8.0'}
2100 |
2101 | type-is@1.6.18:
2102 | resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
2103 | engines: {node: '>= 0.6'}
2104 |
2105 | typed-array-buffer@1.0.2:
2106 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
2107 | engines: {node: '>= 0.4'}
2108 |
2109 | typed-array-byte-length@1.0.1:
2110 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
2111 | engines: {node: '>= 0.4'}
2112 |
2113 | typed-array-byte-offset@1.0.2:
2114 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
2115 | engines: {node: '>= 0.4'}
2116 |
2117 | typed-array-length@1.0.6:
2118 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
2119 | engines: {node: '>= 0.4'}
2120 |
2121 | typescript@5.5.4:
2122 | resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
2123 | engines: {node: '>=14.17'}
2124 | hasBin: true
2125 |
2126 | unbox-primitive@1.0.2:
2127 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
2128 |
2129 | undici-types@6.11.1:
2130 | resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==}
2131 |
2132 | unpipe@1.0.0:
2133 | resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
2134 | engines: {node: '>= 0.8'}
2135 |
2136 | untildify@3.0.3:
2137 | resolution: {integrity: sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==}
2138 | engines: {node: '>=4'}
2139 |
2140 | update-browserslist-db@1.1.0:
2141 | resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
2142 | hasBin: true
2143 | peerDependencies:
2144 | browserslist: '>= 4.21.0'
2145 |
2146 | uri-js@4.4.1:
2147 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2148 |
2149 | use-sync-external-store@1.2.2:
2150 | resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
2151 | peerDependencies:
2152 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2153 |
2154 | util-deprecate@1.0.2:
2155 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2156 |
2157 | util.promisify@1.0.0:
2158 | resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
2159 |
2160 | utils-merge@1.0.1:
2161 | resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
2162 | engines: {node: '>= 0.4.0'}
2163 |
2164 | uuid@3.3.2:
2165 | resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==}
2166 | deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
2167 | hasBin: true
2168 |
2169 | uuidv4@2.0.0:
2170 | resolution: {integrity: sha512-sAUlwUVepcVk6bwnaW/oi6LCwMdueako5QQzRr90ioAVVcms6p1mV0PaSxK8gyAC4CRvKddsk217uUpZUbKd2Q==}
2171 |
2172 | uuidv4@3.0.1:
2173 | resolution: {integrity: sha512-PPzksdWRl2a5C9hrs3OOYrArTeyoR0ftJ3jtOy+BnVHkT2UlrrzPNt9nTdiGuxmQItHM/AcTXahwZZC57Njojg==}
2174 |
2175 | v8-compile-cache-lib@3.0.1:
2176 | resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
2177 |
2178 | varname@2.0.3:
2179 | resolution: {integrity: sha512-+DofT9mJAUALhnr9ipZ5Z2icwaEZ7DAajOZT4ffXy3MQqnXtG3b7atItLQEJCkfcJTOf9WcsywneOEibD4eqJg==}
2180 | engines: {node: '>=0.10'}
2181 |
2182 | vary@1.1.2:
2183 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
2184 | engines: {node: '>= 0.8'}
2185 |
2186 | vite@5.3.5:
2187 | resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
2188 | engines: {node: ^18.0.0 || >=20.0.0}
2189 | hasBin: true
2190 | peerDependencies:
2191 | '@types/node': ^18.0.0 || >=20.0.0
2192 | less: '*'
2193 | lightningcss: ^1.21.0
2194 | sass: '*'
2195 | stylus: '*'
2196 | sugarss: '*'
2197 | terser: ^5.4.0
2198 | peerDependenciesMeta:
2199 | '@types/node':
2200 | optional: true
2201 | less:
2202 | optional: true
2203 | lightningcss:
2204 | optional: true
2205 | sass:
2206 | optional: true
2207 | stylus:
2208 | optional: true
2209 | sugarss:
2210 | optional: true
2211 | terser:
2212 | optional: true
2213 |
2214 | which-boxed-primitive@1.0.2:
2215 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
2216 |
2217 | which-builtin-type@1.1.3:
2218 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
2219 | engines: {node: '>= 0.4'}
2220 |
2221 | which-collection@1.0.2:
2222 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
2223 | engines: {node: '>= 0.4'}
2224 |
2225 | which-typed-array@1.1.15:
2226 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
2227 | engines: {node: '>= 0.4'}
2228 |
2229 | which@2.0.2:
2230 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2231 | engines: {node: '>= 8'}
2232 | hasBin: true
2233 |
2234 | word-wrap@1.2.5:
2235 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2236 | engines: {node: '>=0.10.0'}
2237 |
2238 | wrap-ansi@7.0.0:
2239 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2240 | engines: {node: '>=10'}
2241 |
2242 | wrap-ansi@8.1.0:
2243 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
2244 | engines: {node: '>=12'}
2245 |
2246 | ws@6.2.0:
2247 | resolution: {integrity: sha512-deZYUNlt2O4buFCa3t5bKLf8A7FPP/TVjwOeVNpw818Ma5nk4MLXls2eoEGS39o8119QIYxTrTDoPQ5B/gTD6w==}
2248 | peerDependencies:
2249 | bufferutil: ^4.0.1
2250 | utf-8-validate: ^5.0.2
2251 | peerDependenciesMeta:
2252 | bufferutil:
2253 | optional: true
2254 | utf-8-validate:
2255 | optional: true
2256 |
2257 | yallist@3.1.1:
2258 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2259 |
2260 | yaml@2.5.0:
2261 | resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
2262 | engines: {node: '>= 14'}
2263 | hasBin: true
2264 |
2265 | yn@3.1.1:
2266 | resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
2267 | engines: {node: '>=6'}
2268 |
2269 | yocto-queue@0.1.0:
2270 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2271 | engines: {node: '>=10'}
2272 |
2273 | snapshots:
2274 |
2275 | '@alloc/quick-lru@5.2.0': {}
2276 |
2277 | '@ampproject/remapping@2.3.0':
2278 | dependencies:
2279 | '@jridgewell/gen-mapping': 0.3.5
2280 | '@jridgewell/trace-mapping': 0.3.25
2281 |
2282 | '@babel/code-frame@7.24.7':
2283 | dependencies:
2284 | '@babel/highlight': 7.24.7
2285 | picocolors: 1.0.1
2286 |
2287 | '@babel/compat-data@7.24.9': {}
2288 |
2289 | '@babel/core@7.24.9':
2290 | dependencies:
2291 | '@ampproject/remapping': 2.3.0
2292 | '@babel/code-frame': 7.24.7
2293 | '@babel/generator': 7.24.9
2294 | '@babel/helper-compilation-targets': 7.24.8
2295 | '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
2296 | '@babel/helpers': 7.24.8
2297 | '@babel/parser': 7.24.8
2298 | '@babel/template': 7.24.7
2299 | '@babel/traverse': 7.24.8
2300 | '@babel/types': 7.24.9
2301 | convert-source-map: 2.0.0
2302 | debug: 4.3.5
2303 | gensync: 1.0.0-beta.2
2304 | json5: 2.2.3
2305 | semver: 6.3.1
2306 | transitivePeerDependencies:
2307 | - supports-color
2308 |
2309 | '@babel/generator@7.24.9':
2310 | dependencies:
2311 | '@babel/types': 7.24.9
2312 | '@jridgewell/gen-mapping': 0.3.5
2313 | '@jridgewell/trace-mapping': 0.3.25
2314 | jsesc: 2.5.2
2315 |
2316 | '@babel/helper-compilation-targets@7.24.8':
2317 | dependencies:
2318 | '@babel/compat-data': 7.24.9
2319 | '@babel/helper-validator-option': 7.24.8
2320 | browserslist: 4.23.2
2321 | lru-cache: 5.1.1
2322 | semver: 6.3.1
2323 |
2324 | '@babel/helper-environment-visitor@7.24.7':
2325 | dependencies:
2326 | '@babel/types': 7.24.9
2327 |
2328 | '@babel/helper-function-name@7.24.7':
2329 | dependencies:
2330 | '@babel/template': 7.24.7
2331 | '@babel/types': 7.24.9
2332 |
2333 | '@babel/helper-hoist-variables@7.24.7':
2334 | dependencies:
2335 | '@babel/types': 7.24.9
2336 |
2337 | '@babel/helper-module-imports@7.24.7':
2338 | dependencies:
2339 | '@babel/traverse': 7.24.8
2340 | '@babel/types': 7.24.9
2341 | transitivePeerDependencies:
2342 | - supports-color
2343 |
2344 | '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
2345 | dependencies:
2346 | '@babel/core': 7.24.9
2347 | '@babel/helper-environment-visitor': 7.24.7
2348 | '@babel/helper-module-imports': 7.24.7
2349 | '@babel/helper-simple-access': 7.24.7
2350 | '@babel/helper-split-export-declaration': 7.24.7
2351 | '@babel/helper-validator-identifier': 7.24.7
2352 | transitivePeerDependencies:
2353 | - supports-color
2354 |
2355 | '@babel/helper-plugin-utils@7.24.8': {}
2356 |
2357 | '@babel/helper-simple-access@7.24.7':
2358 | dependencies:
2359 | '@babel/traverse': 7.24.8
2360 | '@babel/types': 7.24.9
2361 | transitivePeerDependencies:
2362 | - supports-color
2363 |
2364 | '@babel/helper-split-export-declaration@7.24.7':
2365 | dependencies:
2366 | '@babel/types': 7.24.9
2367 |
2368 | '@babel/helper-string-parser@7.24.8': {}
2369 |
2370 | '@babel/helper-validator-identifier@7.24.7': {}
2371 |
2372 | '@babel/helper-validator-option@7.24.8': {}
2373 |
2374 | '@babel/helpers@7.24.8':
2375 | dependencies:
2376 | '@babel/template': 7.24.7
2377 | '@babel/types': 7.24.9
2378 |
2379 | '@babel/highlight@7.24.7':
2380 | dependencies:
2381 | '@babel/helper-validator-identifier': 7.24.7
2382 | chalk: 2.4.2
2383 | js-tokens: 4.0.0
2384 | picocolors: 1.0.1
2385 |
2386 | '@babel/parser@7.24.8':
2387 | dependencies:
2388 | '@babel/types': 7.24.9
2389 |
2390 | '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.9)':
2391 | dependencies:
2392 | '@babel/core': 7.24.9
2393 | '@babel/helper-plugin-utils': 7.24.8
2394 |
2395 | '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.9)':
2396 | dependencies:
2397 | '@babel/core': 7.24.9
2398 | '@babel/helper-plugin-utils': 7.24.8
2399 |
2400 | '@babel/runtime@7.1.2':
2401 | dependencies:
2402 | regenerator-runtime: 0.12.1
2403 |
2404 | '@babel/runtime@7.2.0':
2405 | dependencies:
2406 | regenerator-runtime: 0.12.1
2407 |
2408 | '@babel/runtime@7.3.4':
2409 | dependencies:
2410 | regenerator-runtime: 0.12.1
2411 |
2412 | '@babel/template@7.24.7':
2413 | dependencies:
2414 | '@babel/code-frame': 7.24.7
2415 | '@babel/parser': 7.24.8
2416 | '@babel/types': 7.24.9
2417 |
2418 | '@babel/traverse@7.24.8':
2419 | dependencies:
2420 | '@babel/code-frame': 7.24.7
2421 | '@babel/generator': 7.24.9
2422 | '@babel/helper-environment-visitor': 7.24.7
2423 | '@babel/helper-function-name': 7.24.7
2424 | '@babel/helper-hoist-variables': 7.24.7
2425 | '@babel/helper-split-export-declaration': 7.24.7
2426 | '@babel/parser': 7.24.8
2427 | '@babel/types': 7.24.9
2428 | debug: 4.3.5
2429 | globals: 11.12.0
2430 | transitivePeerDependencies:
2431 | - supports-color
2432 |
2433 | '@babel/types@7.24.9':
2434 | dependencies:
2435 | '@babel/helper-string-parser': 7.24.8
2436 | '@babel/helper-validator-identifier': 7.24.7
2437 | to-fast-properties: 2.0.0
2438 |
2439 | '@clerk/clerk-react@5.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2440 | dependencies:
2441 | '@clerk/shared': 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2442 | '@clerk/types': 4.9.1
2443 | react: 18.3.1
2444 | react-dom: 18.3.1(react@18.3.1)
2445 | tslib: 2.4.1
2446 |
2447 | '@clerk/shared@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2448 | dependencies:
2449 | '@clerk/types': 4.9.1
2450 | glob-to-regexp: 0.4.1
2451 | js-cookie: 3.0.5
2452 | std-env: 3.7.0
2453 | swr: 2.2.5(react@18.3.1)
2454 | optionalDependencies:
2455 | react: 18.3.1
2456 | react-dom: 18.3.1(react@18.3.1)
2457 |
2458 | '@clerk/types@4.9.1':
2459 | dependencies:
2460 | csstype: 3.1.1
2461 |
2462 | '@cspotcode/source-map-support@0.8.1':
2463 | dependencies:
2464 | '@jridgewell/trace-mapping': 0.3.9
2465 |
2466 | '@esbuild/aix-ppc64@0.21.5':
2467 | optional: true
2468 |
2469 | '@esbuild/android-arm64@0.21.5':
2470 | optional: true
2471 |
2472 | '@esbuild/android-arm@0.21.5':
2473 | optional: true
2474 |
2475 | '@esbuild/android-x64@0.21.5':
2476 | optional: true
2477 |
2478 | '@esbuild/darwin-arm64@0.21.5':
2479 | optional: true
2480 |
2481 | '@esbuild/darwin-x64@0.21.5':
2482 | optional: true
2483 |
2484 | '@esbuild/freebsd-arm64@0.21.5':
2485 | optional: true
2486 |
2487 | '@esbuild/freebsd-x64@0.21.5':
2488 | optional: true
2489 |
2490 | '@esbuild/linux-arm64@0.21.5':
2491 | optional: true
2492 |
2493 | '@esbuild/linux-arm@0.21.5':
2494 | optional: true
2495 |
2496 | '@esbuild/linux-ia32@0.21.5':
2497 | optional: true
2498 |
2499 | '@esbuild/linux-loong64@0.21.5':
2500 | optional: true
2501 |
2502 | '@esbuild/linux-mips64el@0.21.5':
2503 | optional: true
2504 |
2505 | '@esbuild/linux-ppc64@0.21.5':
2506 | optional: true
2507 |
2508 | '@esbuild/linux-riscv64@0.21.5':
2509 | optional: true
2510 |
2511 | '@esbuild/linux-s390x@0.21.5':
2512 | optional: true
2513 |
2514 | '@esbuild/linux-x64@0.21.5':
2515 | optional: true
2516 |
2517 | '@esbuild/netbsd-x64@0.21.5':
2518 | optional: true
2519 |
2520 | '@esbuild/openbsd-x64@0.21.5':
2521 | optional: true
2522 |
2523 | '@esbuild/sunos-x64@0.21.5':
2524 | optional: true
2525 |
2526 | '@esbuild/win32-arm64@0.21.5':
2527 | optional: true
2528 |
2529 | '@esbuild/win32-ia32@0.21.5':
2530 | optional: true
2531 |
2532 | '@esbuild/win32-x64@0.21.5':
2533 | optional: true
2534 |
2535 | '@eslint-community/eslint-utils@4.4.0(eslint@9.7.0)':
2536 | dependencies:
2537 | eslint: 9.7.0
2538 | eslint-visitor-keys: 3.4.3
2539 |
2540 | '@eslint-community/regexpp@4.11.0': {}
2541 |
2542 | '@eslint/config-array@0.17.0':
2543 | dependencies:
2544 | '@eslint/object-schema': 2.1.4
2545 | debug: 4.3.5
2546 | minimatch: 3.1.2
2547 | transitivePeerDependencies:
2548 | - supports-color
2549 |
2550 | '@eslint/eslintrc@3.1.0':
2551 | dependencies:
2552 | ajv: 6.12.6
2553 | debug: 4.3.5
2554 | espree: 10.1.0
2555 | globals: 14.0.0
2556 | ignore: 5.3.1
2557 | import-fresh: 3.3.0
2558 | js-yaml: 4.1.0
2559 | minimatch: 3.1.2
2560 | strip-json-comments: 3.1.1
2561 | transitivePeerDependencies:
2562 | - supports-color
2563 |
2564 | '@eslint/js@9.7.0': {}
2565 |
2566 | '@eslint/object-schema@2.1.4': {}
2567 |
2568 | '@humanwhocodes/module-importer@1.0.1': {}
2569 |
2570 | '@humanwhocodes/retry@0.3.0': {}
2571 |
2572 | '@isaacs/cliui@8.0.2':
2573 | dependencies:
2574 | string-width: 5.1.2
2575 | string-width-cjs: string-width@4.2.3
2576 | strip-ansi: 7.1.0
2577 | strip-ansi-cjs: strip-ansi@6.0.1
2578 | wrap-ansi: 8.1.0
2579 | wrap-ansi-cjs: wrap-ansi@7.0.0
2580 |
2581 | '@jridgewell/gen-mapping@0.3.5':
2582 | dependencies:
2583 | '@jridgewell/set-array': 1.2.1
2584 | '@jridgewell/sourcemap-codec': 1.5.0
2585 | '@jridgewell/trace-mapping': 0.3.25
2586 |
2587 | '@jridgewell/resolve-uri@3.1.2': {}
2588 |
2589 | '@jridgewell/set-array@1.2.1': {}
2590 |
2591 | '@jridgewell/sourcemap-codec@1.5.0': {}
2592 |
2593 | '@jridgewell/trace-mapping@0.3.25':
2594 | dependencies:
2595 | '@jridgewell/resolve-uri': 3.1.2
2596 | '@jridgewell/sourcemap-codec': 1.5.0
2597 |
2598 | '@jridgewell/trace-mapping@0.3.9':
2599 | dependencies:
2600 | '@jridgewell/resolve-uri': 3.1.2
2601 | '@jridgewell/sourcemap-codec': 1.5.0
2602 |
2603 | '@nodelib/fs.scandir@2.1.5':
2604 | dependencies:
2605 | '@nodelib/fs.stat': 2.0.5
2606 | run-parallel: 1.2.0
2607 |
2608 | '@nodelib/fs.stat@2.0.5': {}
2609 |
2610 | '@nodelib/fs.walk@1.2.8':
2611 | dependencies:
2612 | '@nodelib/fs.scandir': 2.1.5
2613 | fastq: 1.17.1
2614 |
2615 | '@pkgjs/parseargs@0.11.0':
2616 | optional: true
2617 |
2618 | '@remix-run/router@1.18.0': {}
2619 |
2620 | '@rollup/rollup-android-arm-eabi@4.18.1':
2621 | optional: true
2622 |
2623 | '@rollup/rollup-android-arm64@4.18.1':
2624 | optional: true
2625 |
2626 | '@rollup/rollup-darwin-arm64@4.18.1':
2627 | optional: true
2628 |
2629 | '@rollup/rollup-darwin-x64@4.18.1':
2630 | optional: true
2631 |
2632 | '@rollup/rollup-linux-arm-gnueabihf@4.18.1':
2633 | optional: true
2634 |
2635 | '@rollup/rollup-linux-arm-musleabihf@4.18.1':
2636 | optional: true
2637 |
2638 | '@rollup/rollup-linux-arm64-gnu@4.18.1':
2639 | optional: true
2640 |
2641 | '@rollup/rollup-linux-arm64-musl@4.18.1':
2642 | optional: true
2643 |
2644 | '@rollup/rollup-linux-powerpc64le-gnu@4.18.1':
2645 | optional: true
2646 |
2647 | '@rollup/rollup-linux-riscv64-gnu@4.18.1':
2648 | optional: true
2649 |
2650 | '@rollup/rollup-linux-s390x-gnu@4.18.1':
2651 | optional: true
2652 |
2653 | '@rollup/rollup-linux-x64-gnu@4.18.1':
2654 | optional: true
2655 |
2656 | '@rollup/rollup-linux-x64-musl@4.18.1':
2657 | optional: true
2658 |
2659 | '@rollup/rollup-win32-arm64-msvc@4.18.1':
2660 | optional: true
2661 |
2662 | '@rollup/rollup-win32-ia32-msvc@4.18.1':
2663 | optional: true
2664 |
2665 | '@rollup/rollup-win32-x64-msvc@4.18.1':
2666 | optional: true
2667 |
2668 | '@tsconfig/node10@1.0.11': {}
2669 |
2670 | '@tsconfig/node12@1.0.11': {}
2671 |
2672 | '@tsconfig/node14@1.0.3': {}
2673 |
2674 | '@tsconfig/node16@1.0.4': {}
2675 |
2676 | '@types/babel__core@7.20.5':
2677 | dependencies:
2678 | '@babel/parser': 7.24.8
2679 | '@babel/types': 7.24.9
2680 | '@types/babel__generator': 7.6.8
2681 | '@types/babel__template': 7.4.4
2682 | '@types/babel__traverse': 7.20.6
2683 |
2684 | '@types/babel__generator@7.6.8':
2685 | dependencies:
2686 | '@babel/types': 7.24.9
2687 |
2688 | '@types/babel__template@7.4.4':
2689 | dependencies:
2690 | '@babel/parser': 7.24.8
2691 | '@babel/types': 7.24.9
2692 |
2693 | '@types/babel__traverse@7.20.6':
2694 | dependencies:
2695 | '@babel/types': 7.24.9
2696 |
2697 | '@types/estree@1.0.5': {}
2698 |
2699 | '@types/node@22.0.0':
2700 | dependencies:
2701 | undici-types: 6.11.1
2702 |
2703 | '@types/prop-types@15.7.12': {}
2704 |
2705 | '@types/react-dom@18.3.0':
2706 | dependencies:
2707 | '@types/react': 18.3.3
2708 |
2709 | '@types/react@18.3.3':
2710 | dependencies:
2711 | '@types/prop-types': 15.7.12
2712 | csstype: 3.1.3
2713 |
2714 | '@vitejs/plugin-react@4.3.1(vite@5.3.5(@types/node@22.0.0))':
2715 | dependencies:
2716 | '@babel/core': 7.24.9
2717 | '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.9)
2718 | '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.9)
2719 | '@types/babel__core': 7.20.5
2720 | react-refresh: 0.14.2
2721 | vite: 5.3.5(@types/node@22.0.0)
2722 | transitivePeerDependencies:
2723 | - supports-color
2724 |
2725 | accepts@1.3.8:
2726 | dependencies:
2727 | mime-types: 2.1.35
2728 | negotiator: 0.6.3
2729 |
2730 | acorn-jsx@5.3.2(acorn@8.12.1):
2731 | dependencies:
2732 | acorn: 8.12.1
2733 |
2734 | acorn-walk@8.3.3:
2735 | dependencies:
2736 | acorn: 8.12.1
2737 |
2738 | acorn@8.12.1: {}
2739 |
2740 | ajv@6.10.0:
2741 | dependencies:
2742 | fast-deep-equal: 2.0.1
2743 | fast-json-stable-stringify: 2.1.0
2744 | json-schema-traverse: 0.4.1
2745 | uri-js: 4.4.1
2746 |
2747 | ajv@6.12.6:
2748 | dependencies:
2749 | fast-deep-equal: 3.1.3
2750 | fast-json-stable-stringify: 2.1.0
2751 | json-schema-traverse: 0.4.1
2752 | uri-js: 4.4.1
2753 |
2754 | amqplib@0.5.2:
2755 | dependencies:
2756 | bitsyntax: 0.0.4
2757 | bluebird: 3.7.2
2758 | buffer-more-ints: 0.0.2
2759 | readable-stream: 1.1.14
2760 | safe-buffer: 5.2.1
2761 |
2762 | ansi-regex@5.0.1: {}
2763 |
2764 | ansi-regex@6.0.1: {}
2765 |
2766 | ansi-styles@3.2.1:
2767 | dependencies:
2768 | color-convert: 1.9.3
2769 |
2770 | ansi-styles@4.3.0:
2771 | dependencies:
2772 | color-convert: 2.0.1
2773 |
2774 | ansi-styles@6.2.1: {}
2775 |
2776 | any-promise@1.3.0: {}
2777 |
2778 | anymatch@3.1.3:
2779 | dependencies:
2780 | normalize-path: 3.0.0
2781 | picomatch: 2.3.1
2782 |
2783 | app-root-path@2.1.0: {}
2784 |
2785 | arg@4.1.3: {}
2786 |
2787 | arg@5.0.2: {}
2788 |
2789 | argparse@2.0.1: {}
2790 |
2791 | array-buffer-byte-length@1.0.1:
2792 | dependencies:
2793 | call-bind: 1.0.7
2794 | is-array-buffer: 3.0.4
2795 |
2796 | array-flatten@1.1.1: {}
2797 |
2798 | array-includes@3.1.8:
2799 | dependencies:
2800 | call-bind: 1.0.7
2801 | define-properties: 1.2.1
2802 | es-abstract: 1.23.3
2803 | es-object-atoms: 1.0.0
2804 | get-intrinsic: 1.2.4
2805 | is-string: 1.0.7
2806 |
2807 | array.prototype.findlast@1.2.5:
2808 | dependencies:
2809 | call-bind: 1.0.7
2810 | define-properties: 1.2.1
2811 | es-abstract: 1.23.3
2812 | es-errors: 1.3.0
2813 | es-object-atoms: 1.0.0
2814 | es-shim-unscopables: 1.0.2
2815 |
2816 | array.prototype.flat@1.3.2:
2817 | dependencies:
2818 | call-bind: 1.0.7
2819 | define-properties: 1.2.1
2820 | es-abstract: 1.23.3
2821 | es-shim-unscopables: 1.0.2
2822 |
2823 | array.prototype.flatmap@1.3.2:
2824 | dependencies:
2825 | call-bind: 1.0.7
2826 | define-properties: 1.2.1
2827 | es-abstract: 1.23.3
2828 | es-shim-unscopables: 1.0.2
2829 |
2830 | array.prototype.reduce@1.0.7:
2831 | dependencies:
2832 | call-bind: 1.0.7
2833 | define-properties: 1.2.1
2834 | es-abstract: 1.23.3
2835 | es-array-method-boxes-properly: 1.0.0
2836 | es-errors: 1.3.0
2837 | es-object-atoms: 1.0.0
2838 | is-string: 1.0.7
2839 |
2840 | array.prototype.toreversed@1.1.2:
2841 | dependencies:
2842 | call-bind: 1.0.7
2843 | define-properties: 1.2.1
2844 | es-abstract: 1.23.3
2845 | es-shim-unscopables: 1.0.2
2846 |
2847 | array.prototype.tosorted@1.1.4:
2848 | dependencies:
2849 | call-bind: 1.0.7
2850 | define-properties: 1.2.1
2851 | es-abstract: 1.23.3
2852 | es-errors: 1.3.0
2853 | es-shim-unscopables: 1.0.2
2854 |
2855 | arraybuffer.prototype.slice@1.0.3:
2856 | dependencies:
2857 | array-buffer-byte-length: 1.0.1
2858 | call-bind: 1.0.7
2859 | define-properties: 1.2.1
2860 | es-abstract: 1.23.3
2861 | es-errors: 1.3.0
2862 | get-intrinsic: 1.2.4
2863 | is-array-buffer: 3.0.4
2864 | is-shared-array-buffer: 1.0.3
2865 |
2866 | asn1@0.2.3: {}
2867 |
2868 | async-limiter@1.0.1: {}
2869 |
2870 | async-retry@1.2.3:
2871 | dependencies:
2872 | retry: 0.12.0
2873 |
2874 | autoprefixer@10.4.19(postcss@8.4.40):
2875 | dependencies:
2876 | browserslist: 4.23.2
2877 | caniuse-lite: 1.0.30001642
2878 | fraction.js: 4.3.7
2879 | normalize-range: 0.1.2
2880 | picocolors: 1.0.1
2881 | postcss: 8.4.40
2882 | postcss-value-parser: 4.2.0
2883 |
2884 | available-typed-arrays@1.0.7:
2885 | dependencies:
2886 | possible-typed-array-names: 1.0.0
2887 |
2888 | babel-runtime@6.26.0:
2889 | dependencies:
2890 | core-js: 2.6.12
2891 | regenerator-runtime: 0.11.1
2892 |
2893 | balanced-match@1.0.2: {}
2894 |
2895 | basic-auth@2.0.1:
2896 | dependencies:
2897 | safe-buffer: 5.1.2
2898 |
2899 | binary-extensions@2.3.0: {}
2900 |
2901 | bitsyntax@0.0.4:
2902 | dependencies:
2903 | buffer-more-ints: 0.0.2
2904 |
2905 | bluebird@3.7.2: {}
2906 |
2907 | body-parser@1.18.3:
2908 | dependencies:
2909 | bytes: 3.0.0
2910 | content-type: 1.0.4
2911 | debug: 2.6.9
2912 | depd: 1.1.2
2913 | http-errors: 1.6.3
2914 | iconv-lite: 0.4.23
2915 | on-finished: 2.3.0
2916 | qs: 6.5.2
2917 | raw-body: 2.3.3
2918 | type-is: 1.6.18
2919 | transitivePeerDependencies:
2920 | - supports-color
2921 |
2922 | brace-expansion@1.1.11:
2923 | dependencies:
2924 | balanced-match: 1.0.2
2925 | concat-map: 0.0.1
2926 |
2927 | brace-expansion@2.0.1:
2928 | dependencies:
2929 | balanced-match: 1.0.2
2930 |
2931 | braces@3.0.3:
2932 | dependencies:
2933 | fill-range: 7.1.1
2934 |
2935 | browserslist@4.23.2:
2936 | dependencies:
2937 | caniuse-lite: 1.0.30001642
2938 | electron-to-chromium: 1.4.828
2939 | node-releases: 2.0.14
2940 | update-browserslist-db: 1.1.0(browserslist@4.23.2)
2941 |
2942 | buffer-equal-constant-time@1.0.1: {}
2943 |
2944 | buffer-more-ints@0.0.2: {}
2945 |
2946 | bytes@3.0.0: {}
2947 |
2948 | call-bind@1.0.7:
2949 | dependencies:
2950 | es-define-property: 1.0.0
2951 | es-errors: 1.3.0
2952 | function-bind: 1.1.2
2953 | get-intrinsic: 1.2.4
2954 | set-function-length: 1.2.2
2955 |
2956 | callsites@3.1.0: {}
2957 |
2958 | camelcase-css@2.0.1: {}
2959 |
2960 | caniuse-lite@1.0.30001642: {}
2961 |
2962 | chalk@2.4.1:
2963 | dependencies:
2964 | ansi-styles: 3.2.1
2965 | escape-string-regexp: 1.0.5
2966 | supports-color: 5.5.0
2967 |
2968 | chalk@2.4.2:
2969 | dependencies:
2970 | ansi-styles: 3.2.1
2971 | escape-string-regexp: 1.0.5
2972 | supports-color: 5.5.0
2973 |
2974 | chalk@4.1.2:
2975 | dependencies:
2976 | ansi-styles: 4.3.0
2977 | supports-color: 7.2.0
2978 |
2979 | chokidar@3.6.0:
2980 | dependencies:
2981 | anymatch: 3.1.3
2982 | braces: 3.0.3
2983 | glob-parent: 5.1.2
2984 | is-binary-path: 2.1.0
2985 | is-glob: 4.0.3
2986 | normalize-path: 3.0.0
2987 | readdirp: 3.6.0
2988 | optionalDependencies:
2989 | fsevents: 2.3.3
2990 |
2991 | client-only@0.0.1: {}
2992 |
2993 | color-convert@1.9.3:
2994 | dependencies:
2995 | color-name: 1.1.3
2996 |
2997 | color-convert@2.0.1:
2998 | dependencies:
2999 | color-name: 1.1.4
3000 |
3001 | color-name@1.1.3: {}
3002 |
3003 | color-name@1.1.4: {}
3004 |
3005 | commander@4.1.1: {}
3006 |
3007 | commands-events@1.0.4:
3008 | dependencies:
3009 | '@babel/runtime': 7.2.0
3010 | formats: 1.0.0
3011 | uuidv4: 2.0.0
3012 |
3013 | comparejs@1.0.0: {}
3014 |
3015 | compressible@2.0.18:
3016 | dependencies:
3017 | mime-db: 1.53.0
3018 |
3019 | compression@1.7.3:
3020 | dependencies:
3021 | accepts: 1.3.8
3022 | bytes: 3.0.0
3023 | compressible: 2.0.18
3024 | debug: 2.6.9
3025 | on-headers: 1.0.2
3026 | safe-buffer: 5.1.2
3027 | vary: 1.1.2
3028 | transitivePeerDependencies:
3029 | - supports-color
3030 |
3031 | concat-map@0.0.1: {}
3032 |
3033 | content-disposition@0.5.2: {}
3034 |
3035 | content-type@1.0.4: {}
3036 |
3037 | convert-source-map@2.0.0: {}
3038 |
3039 | cookie-signature@1.0.6: {}
3040 |
3041 | cookie@0.3.1: {}
3042 |
3043 | core-js@2.6.12: {}
3044 |
3045 | core-util-is@1.0.3: {}
3046 |
3047 | cors@2.8.5:
3048 | dependencies:
3049 | object-assign: 4.1.1
3050 | vary: 1.1.2
3051 |
3052 | create-require@1.1.1: {}
3053 |
3054 | cross-spawn@7.0.3:
3055 | dependencies:
3056 | path-key: 3.1.1
3057 | shebang-command: 2.0.0
3058 | which: 2.0.2
3059 |
3060 | crypto2@2.0.0:
3061 | dependencies:
3062 | babel-runtime: 6.26.0
3063 | node-rsa: 0.4.2
3064 | util.promisify: 1.0.0
3065 |
3066 | cssesc@3.0.0: {}
3067 |
3068 | csstype@3.1.1: {}
3069 |
3070 | csstype@3.1.3: {}
3071 |
3072 | data-view-buffer@1.0.1:
3073 | dependencies:
3074 | call-bind: 1.0.7
3075 | es-errors: 1.3.0
3076 | is-data-view: 1.0.1
3077 |
3078 | data-view-byte-length@1.0.1:
3079 | dependencies:
3080 | call-bind: 1.0.7
3081 | es-errors: 1.3.0
3082 | is-data-view: 1.0.1
3083 |
3084 | data-view-byte-offset@1.0.0:
3085 | dependencies:
3086 | call-bind: 1.0.7
3087 | es-errors: 1.3.0
3088 | is-data-view: 1.0.1
3089 |
3090 | datasette@1.0.1:
3091 | dependencies:
3092 | comparejs: 1.0.0
3093 | eventemitter2: 5.0.1
3094 | lodash: 4.17.5
3095 |
3096 | debug@2.6.9:
3097 | dependencies:
3098 | ms: 2.0.0
3099 |
3100 | debug@4.3.5:
3101 | dependencies:
3102 | ms: 2.1.2
3103 |
3104 | deep-is@0.1.4: {}
3105 |
3106 | define-data-property@1.1.4:
3107 | dependencies:
3108 | es-define-property: 1.0.0
3109 | es-errors: 1.3.0
3110 | gopd: 1.0.1
3111 |
3112 | define-properties@1.2.1:
3113 | dependencies:
3114 | define-data-property: 1.1.4
3115 | has-property-descriptors: 1.0.2
3116 | object-keys: 1.1.1
3117 |
3118 | depd@1.1.2: {}
3119 |
3120 | destroy@1.0.4: {}
3121 |
3122 | didyoumean@1.2.2: {}
3123 |
3124 | diff@4.0.2: {}
3125 |
3126 | dlv@1.1.3: {}
3127 |
3128 | doctrine@2.1.0:
3129 | dependencies:
3130 | esutils: 2.0.3
3131 |
3132 | draht@1.0.1:
3133 | dependencies:
3134 | eventemitter2: 5.0.1
3135 |
3136 | eastasianwidth@0.2.0: {}
3137 |
3138 | ecdsa-sig-formatter@1.0.11:
3139 | dependencies:
3140 | safe-buffer: 5.2.1
3141 |
3142 | ee-first@1.1.1: {}
3143 |
3144 | electron-to-chromium@1.4.828: {}
3145 |
3146 | emoji-regex@8.0.0: {}
3147 |
3148 | emoji-regex@9.2.2: {}
3149 |
3150 | encodeurl@1.0.2: {}
3151 |
3152 | es-abstract@1.23.3:
3153 | dependencies:
3154 | array-buffer-byte-length: 1.0.1
3155 | arraybuffer.prototype.slice: 1.0.3
3156 | available-typed-arrays: 1.0.7
3157 | call-bind: 1.0.7
3158 | data-view-buffer: 1.0.1
3159 | data-view-byte-length: 1.0.1
3160 | data-view-byte-offset: 1.0.0
3161 | es-define-property: 1.0.0
3162 | es-errors: 1.3.0
3163 | es-object-atoms: 1.0.0
3164 | es-set-tostringtag: 2.0.3
3165 | es-to-primitive: 1.2.1
3166 | function.prototype.name: 1.1.6
3167 | get-intrinsic: 1.2.4
3168 | get-symbol-description: 1.0.2
3169 | globalthis: 1.0.4
3170 | gopd: 1.0.1
3171 | has-property-descriptors: 1.0.2
3172 | has-proto: 1.0.3
3173 | has-symbols: 1.0.3
3174 | hasown: 2.0.2
3175 | internal-slot: 1.0.7
3176 | is-array-buffer: 3.0.4
3177 | is-callable: 1.2.7
3178 | is-data-view: 1.0.1
3179 | is-negative-zero: 2.0.3
3180 | is-regex: 1.1.4
3181 | is-shared-array-buffer: 1.0.3
3182 | is-string: 1.0.7
3183 | is-typed-array: 1.1.13
3184 | is-weakref: 1.0.2
3185 | object-inspect: 1.13.2
3186 | object-keys: 1.1.1
3187 | object.assign: 4.1.5
3188 | regexp.prototype.flags: 1.5.2
3189 | safe-array-concat: 1.1.2
3190 | safe-regex-test: 1.0.3
3191 | string.prototype.trim: 1.2.9
3192 | string.prototype.trimend: 1.0.8
3193 | string.prototype.trimstart: 1.0.8
3194 | typed-array-buffer: 1.0.2
3195 | typed-array-byte-length: 1.0.1
3196 | typed-array-byte-offset: 1.0.2
3197 | typed-array-length: 1.0.6
3198 | unbox-primitive: 1.0.2
3199 | which-typed-array: 1.1.15
3200 |
3201 | es-array-method-boxes-properly@1.0.0: {}
3202 |
3203 | es-define-property@1.0.0:
3204 | dependencies:
3205 | get-intrinsic: 1.2.4
3206 |
3207 | es-errors@1.3.0: {}
3208 |
3209 | es-iterator-helpers@1.0.19:
3210 | dependencies:
3211 | call-bind: 1.0.7
3212 | define-properties: 1.2.1
3213 | es-abstract: 1.23.3
3214 | es-errors: 1.3.0
3215 | es-set-tostringtag: 2.0.3
3216 | function-bind: 1.1.2
3217 | get-intrinsic: 1.2.4
3218 | globalthis: 1.0.4
3219 | has-property-descriptors: 1.0.2
3220 | has-proto: 1.0.3
3221 | has-symbols: 1.0.3
3222 | internal-slot: 1.0.7
3223 | iterator.prototype: 1.1.2
3224 | safe-array-concat: 1.1.2
3225 |
3226 | es-object-atoms@1.0.0:
3227 | dependencies:
3228 | es-errors: 1.3.0
3229 |
3230 | es-set-tostringtag@2.0.3:
3231 | dependencies:
3232 | get-intrinsic: 1.2.4
3233 | has-tostringtag: 1.0.2
3234 | hasown: 2.0.2
3235 |
3236 | es-shim-unscopables@1.0.2:
3237 | dependencies:
3238 | hasown: 2.0.2
3239 |
3240 | es-to-primitive@1.2.1:
3241 | dependencies:
3242 | is-callable: 1.2.7
3243 | is-date-object: 1.0.5
3244 | is-symbol: 1.0.4
3245 |
3246 | esbuild@0.21.5:
3247 | optionalDependencies:
3248 | '@esbuild/aix-ppc64': 0.21.5
3249 | '@esbuild/android-arm': 0.21.5
3250 | '@esbuild/android-arm64': 0.21.5
3251 | '@esbuild/android-x64': 0.21.5
3252 | '@esbuild/darwin-arm64': 0.21.5
3253 | '@esbuild/darwin-x64': 0.21.5
3254 | '@esbuild/freebsd-arm64': 0.21.5
3255 | '@esbuild/freebsd-x64': 0.21.5
3256 | '@esbuild/linux-arm': 0.21.5
3257 | '@esbuild/linux-arm64': 0.21.5
3258 | '@esbuild/linux-ia32': 0.21.5
3259 | '@esbuild/linux-loong64': 0.21.5
3260 | '@esbuild/linux-mips64el': 0.21.5
3261 | '@esbuild/linux-ppc64': 0.21.5
3262 | '@esbuild/linux-riscv64': 0.21.5
3263 | '@esbuild/linux-s390x': 0.21.5
3264 | '@esbuild/linux-x64': 0.21.5
3265 | '@esbuild/netbsd-x64': 0.21.5
3266 | '@esbuild/openbsd-x64': 0.21.5
3267 | '@esbuild/sunos-x64': 0.21.5
3268 | '@esbuild/win32-arm64': 0.21.5
3269 | '@esbuild/win32-ia32': 0.21.5
3270 | '@esbuild/win32-x64': 0.21.5
3271 |
3272 | escalade@3.1.2: {}
3273 |
3274 | escape-html@1.0.3: {}
3275 |
3276 | escape-string-regexp@1.0.5: {}
3277 |
3278 | escape-string-regexp@4.0.0: {}
3279 |
3280 | eslint-plugin-react-hooks@4.6.2(eslint@9.7.0):
3281 | dependencies:
3282 | eslint: 9.7.0
3283 |
3284 | eslint-plugin-react-refresh@0.4.8(eslint@9.7.0):
3285 | dependencies:
3286 | eslint: 9.7.0
3287 |
3288 | eslint-plugin-react@7.34.4(eslint@9.7.0):
3289 | dependencies:
3290 | array-includes: 3.1.8
3291 | array.prototype.findlast: 1.2.5
3292 | array.prototype.flatmap: 1.3.2
3293 | array.prototype.toreversed: 1.1.2
3294 | array.prototype.tosorted: 1.1.4
3295 | doctrine: 2.1.0
3296 | es-iterator-helpers: 1.0.19
3297 | eslint: 9.7.0
3298 | estraverse: 5.3.0
3299 | hasown: 2.0.2
3300 | jsx-ast-utils: 3.3.5
3301 | minimatch: 3.1.2
3302 | object.entries: 1.1.8
3303 | object.fromentries: 2.0.8
3304 | object.values: 1.2.0
3305 | prop-types: 15.8.1
3306 | resolve: 2.0.0-next.5
3307 | semver: 6.3.1
3308 | string.prototype.matchall: 4.0.11
3309 | string.prototype.repeat: 1.0.0
3310 |
3311 | eslint-scope@8.0.2:
3312 | dependencies:
3313 | esrecurse: 4.3.0
3314 | estraverse: 5.3.0
3315 |
3316 | eslint-visitor-keys@3.4.3: {}
3317 |
3318 | eslint-visitor-keys@4.0.0: {}
3319 |
3320 | eslint@9.7.0:
3321 | dependencies:
3322 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
3323 | '@eslint-community/regexpp': 4.11.0
3324 | '@eslint/config-array': 0.17.0
3325 | '@eslint/eslintrc': 3.1.0
3326 | '@eslint/js': 9.7.0
3327 | '@humanwhocodes/module-importer': 1.0.1
3328 | '@humanwhocodes/retry': 0.3.0
3329 | '@nodelib/fs.walk': 1.2.8
3330 | ajv: 6.12.6
3331 | chalk: 4.1.2
3332 | cross-spawn: 7.0.3
3333 | debug: 4.3.5
3334 | escape-string-regexp: 4.0.0
3335 | eslint-scope: 8.0.2
3336 | eslint-visitor-keys: 4.0.0
3337 | espree: 10.1.0
3338 | esquery: 1.6.0
3339 | esutils: 2.0.3
3340 | fast-deep-equal: 3.1.3
3341 | file-entry-cache: 8.0.0
3342 | find-up: 5.0.0
3343 | glob-parent: 6.0.2
3344 | ignore: 5.3.1
3345 | imurmurhash: 0.1.4
3346 | is-glob: 4.0.3
3347 | is-path-inside: 3.0.3
3348 | json-stable-stringify-without-jsonify: 1.0.1
3349 | levn: 0.4.1
3350 | lodash.merge: 4.6.2
3351 | minimatch: 3.1.2
3352 | natural-compare: 1.4.0
3353 | optionator: 0.9.4
3354 | strip-ansi: 6.0.1
3355 | text-table: 0.2.0
3356 | transitivePeerDependencies:
3357 | - supports-color
3358 |
3359 | espree@10.1.0:
3360 | dependencies:
3361 | acorn: 8.12.1
3362 | acorn-jsx: 5.3.2(acorn@8.12.1)
3363 | eslint-visitor-keys: 4.0.0
3364 |
3365 | esquery@1.6.0:
3366 | dependencies:
3367 | estraverse: 5.3.0
3368 |
3369 | esrecurse@4.3.0:
3370 | dependencies:
3371 | estraverse: 5.3.0
3372 |
3373 | estraverse@5.3.0: {}
3374 |
3375 | esutils@2.0.3: {}
3376 |
3377 | etag@1.8.1: {}
3378 |
3379 | eventemitter2@5.0.1: {}
3380 |
3381 | express@4.16.4:
3382 | dependencies:
3383 | accepts: 1.3.8
3384 | array-flatten: 1.1.1
3385 | body-parser: 1.18.3
3386 | content-disposition: 0.5.2
3387 | content-type: 1.0.4
3388 | cookie: 0.3.1
3389 | cookie-signature: 1.0.6
3390 | debug: 2.6.9
3391 | depd: 1.1.2
3392 | encodeurl: 1.0.2
3393 | escape-html: 1.0.3
3394 | etag: 1.8.1
3395 | finalhandler: 1.1.1
3396 | fresh: 0.5.2
3397 | merge-descriptors: 1.0.1
3398 | methods: 1.1.2
3399 | on-finished: 2.3.0
3400 | parseurl: 1.3.3
3401 | path-to-regexp: 0.1.7
3402 | proxy-addr: 2.0.7
3403 | qs: 6.5.2
3404 | range-parser: 1.2.1
3405 | safe-buffer: 5.1.2
3406 | send: 0.16.2
3407 | serve-static: 1.13.2
3408 | setprototypeof: 1.1.0
3409 | statuses: 1.4.0
3410 | type-is: 1.6.18
3411 | utils-merge: 1.0.1
3412 | vary: 1.1.2
3413 | transitivePeerDependencies:
3414 | - supports-color
3415 |
3416 | fast-deep-equal@2.0.1: {}
3417 |
3418 | fast-deep-equal@3.1.3: {}
3419 |
3420 | fast-glob@3.3.2:
3421 | dependencies:
3422 | '@nodelib/fs.stat': 2.0.5
3423 | '@nodelib/fs.walk': 1.2.8
3424 | glob-parent: 5.1.2
3425 | merge2: 1.4.1
3426 | micromatch: 4.0.7
3427 |
3428 | fast-json-stable-stringify@2.1.0: {}
3429 |
3430 | fast-levenshtein@2.0.6: {}
3431 |
3432 | fastq@1.17.1:
3433 | dependencies:
3434 | reusify: 1.0.4
3435 |
3436 | file-entry-cache@8.0.0:
3437 | dependencies:
3438 | flat-cache: 4.0.1
3439 |
3440 | fill-range@7.1.1:
3441 | dependencies:
3442 | to-regex-range: 5.0.1
3443 |
3444 | finalhandler@1.1.1:
3445 | dependencies:
3446 | debug: 2.6.9
3447 | encodeurl: 1.0.2
3448 | escape-html: 1.0.3
3449 | on-finished: 2.3.0
3450 | parseurl: 1.3.3
3451 | statuses: 1.4.0
3452 | unpipe: 1.0.0
3453 | transitivePeerDependencies:
3454 | - supports-color
3455 |
3456 | find-root@1.1.0: {}
3457 |
3458 | find-up@5.0.0:
3459 | dependencies:
3460 | locate-path: 6.0.0
3461 | path-exists: 4.0.0
3462 |
3463 | flaschenpost@1.1.3:
3464 | dependencies:
3465 | '@babel/runtime': 7.2.0
3466 | app-root-path: 2.1.0
3467 | babel-runtime: 6.26.0
3468 | chalk: 2.4.1
3469 | find-root: 1.1.0
3470 | lodash: 4.17.11
3471 | moment: 2.22.2
3472 | processenv: 1.1.0
3473 | split2: 3.0.0
3474 | stack-trace: 0.0.10
3475 | stringify-object: 3.3.0
3476 | untildify: 3.0.3
3477 | util.promisify: 1.0.0
3478 | varname: 2.0.3
3479 |
3480 | flat-cache@4.0.1:
3481 | dependencies:
3482 | flatted: 3.3.1
3483 | keyv: 4.5.4
3484 |
3485 | flatted@3.3.1: {}
3486 |
3487 | for-each@0.3.3:
3488 | dependencies:
3489 | is-callable: 1.2.7
3490 |
3491 | foreground-child@3.2.1:
3492 | dependencies:
3493 | cross-spawn: 7.0.3
3494 | signal-exit: 4.1.0
3495 |
3496 | formats@1.0.0: {}
3497 |
3498 | forwarded@0.2.0: {}
3499 |
3500 | fraction.js@4.3.7: {}
3501 |
3502 | fresh@0.5.2: {}
3503 |
3504 | fsevents@2.3.3:
3505 | optional: true
3506 |
3507 | function-bind@1.1.2: {}
3508 |
3509 | function.prototype.name@1.1.6:
3510 | dependencies:
3511 | call-bind: 1.0.7
3512 | define-properties: 1.2.1
3513 | es-abstract: 1.23.3
3514 | functions-have-names: 1.2.3
3515 |
3516 | functions-have-names@1.2.3: {}
3517 |
3518 | gensync@1.0.0-beta.2: {}
3519 |
3520 | get-intrinsic@1.2.4:
3521 | dependencies:
3522 | es-errors: 1.3.0
3523 | function-bind: 1.1.2
3524 | has-proto: 1.0.3
3525 | has-symbols: 1.0.3
3526 | hasown: 2.0.2
3527 |
3528 | get-own-enumerable-property-symbols@3.0.2: {}
3529 |
3530 | get-symbol-description@1.0.2:
3531 | dependencies:
3532 | call-bind: 1.0.7
3533 | es-errors: 1.3.0
3534 | get-intrinsic: 1.2.4
3535 |
3536 | glob-parent@5.1.2:
3537 | dependencies:
3538 | is-glob: 4.0.3
3539 |
3540 | glob-parent@6.0.2:
3541 | dependencies:
3542 | is-glob: 4.0.3
3543 |
3544 | glob-to-regexp@0.4.1: {}
3545 |
3546 | glob@10.4.5:
3547 | dependencies:
3548 | foreground-child: 3.2.1
3549 | jackspeak: 3.4.3
3550 | minimatch: 9.0.5
3551 | minipass: 7.1.2
3552 | package-json-from-dist: 1.0.0
3553 | path-scurry: 1.11.1
3554 |
3555 | globals@11.12.0: {}
3556 |
3557 | globals@14.0.0: {}
3558 |
3559 | globalthis@1.0.4:
3560 | dependencies:
3561 | define-properties: 1.2.1
3562 | gopd: 1.0.1
3563 |
3564 | gopd@1.0.1:
3565 | dependencies:
3566 | get-intrinsic: 1.2.4
3567 |
3568 | has-bigints@1.0.2: {}
3569 |
3570 | has-flag@3.0.0: {}
3571 |
3572 | has-flag@4.0.0: {}
3573 |
3574 | has-property-descriptors@1.0.2:
3575 | dependencies:
3576 | es-define-property: 1.0.0
3577 |
3578 | has-proto@1.0.3: {}
3579 |
3580 | has-symbols@1.0.3: {}
3581 |
3582 | has-tostringtag@1.0.2:
3583 | dependencies:
3584 | has-symbols: 1.0.3
3585 |
3586 | hase@2.0.0:
3587 | dependencies:
3588 | '@babel/runtime': 7.1.2
3589 | amqplib: 0.5.2
3590 |
3591 | hasown@2.0.2:
3592 | dependencies:
3593 | function-bind: 1.1.2
3594 |
3595 | http-errors@1.6.3:
3596 | dependencies:
3597 | depd: 1.1.2
3598 | inherits: 2.0.3
3599 | setprototypeof: 1.1.0
3600 | statuses: 1.5.0
3601 |
3602 | iconv-lite@0.4.23:
3603 | dependencies:
3604 | safer-buffer: 2.1.2
3605 |
3606 | ignore@5.3.1: {}
3607 |
3608 | import-fresh@3.3.0:
3609 | dependencies:
3610 | parent-module: 1.0.1
3611 | resolve-from: 4.0.0
3612 |
3613 | imurmurhash@0.1.4: {}
3614 |
3615 | inherits@2.0.3: {}
3616 |
3617 | inherits@2.0.4: {}
3618 |
3619 | internal-slot@1.0.7:
3620 | dependencies:
3621 | es-errors: 1.3.0
3622 | hasown: 2.0.2
3623 | side-channel: 1.0.6
3624 |
3625 | ipaddr.js@1.9.1: {}
3626 |
3627 | is-array-buffer@3.0.4:
3628 | dependencies:
3629 | call-bind: 1.0.7
3630 | get-intrinsic: 1.2.4
3631 |
3632 | is-async-function@2.0.0:
3633 | dependencies:
3634 | has-tostringtag: 1.0.2
3635 |
3636 | is-bigint@1.0.4:
3637 | dependencies:
3638 | has-bigints: 1.0.2
3639 |
3640 | is-binary-path@2.1.0:
3641 | dependencies:
3642 | binary-extensions: 2.3.0
3643 |
3644 | is-boolean-object@1.1.2:
3645 | dependencies:
3646 | call-bind: 1.0.7
3647 | has-tostringtag: 1.0.2
3648 |
3649 | is-callable@1.2.7: {}
3650 |
3651 | is-core-module@2.14.0:
3652 | dependencies:
3653 | hasown: 2.0.2
3654 |
3655 | is-data-view@1.0.1:
3656 | dependencies:
3657 | is-typed-array: 1.1.13
3658 |
3659 | is-date-object@1.0.5:
3660 | dependencies:
3661 | has-tostringtag: 1.0.2
3662 |
3663 | is-extglob@2.1.1: {}
3664 |
3665 | is-finalizationregistry@1.0.2:
3666 | dependencies:
3667 | call-bind: 1.0.7
3668 |
3669 | is-fullwidth-code-point@3.0.0: {}
3670 |
3671 | is-generator-function@1.0.10:
3672 | dependencies:
3673 | has-tostringtag: 1.0.2
3674 |
3675 | is-glob@4.0.3:
3676 | dependencies:
3677 | is-extglob: 2.1.1
3678 |
3679 | is-map@2.0.3: {}
3680 |
3681 | is-negative-zero@2.0.3: {}
3682 |
3683 | is-number-object@1.0.7:
3684 | dependencies:
3685 | has-tostringtag: 1.0.2
3686 |
3687 | is-number@7.0.0: {}
3688 |
3689 | is-obj@1.0.1: {}
3690 |
3691 | is-path-inside@3.0.3: {}
3692 |
3693 | is-regex@1.1.4:
3694 | dependencies:
3695 | call-bind: 1.0.7
3696 | has-tostringtag: 1.0.2
3697 |
3698 | is-regexp@1.0.0: {}
3699 |
3700 | is-set@2.0.3: {}
3701 |
3702 | is-shared-array-buffer@1.0.3:
3703 | dependencies:
3704 | call-bind: 1.0.7
3705 |
3706 | is-string@1.0.7:
3707 | dependencies:
3708 | has-tostringtag: 1.0.2
3709 |
3710 | is-symbol@1.0.4:
3711 | dependencies:
3712 | has-symbols: 1.0.3
3713 |
3714 | is-typed-array@1.1.13:
3715 | dependencies:
3716 | which-typed-array: 1.1.15
3717 |
3718 | is-weakmap@2.0.2: {}
3719 |
3720 | is-weakref@1.0.2:
3721 | dependencies:
3722 | call-bind: 1.0.7
3723 |
3724 | is-weakset@2.0.3:
3725 | dependencies:
3726 | call-bind: 1.0.7
3727 | get-intrinsic: 1.2.4
3728 |
3729 | isarray@0.0.1: {}
3730 |
3731 | isarray@2.0.5: {}
3732 |
3733 | isexe@2.0.0: {}
3734 |
3735 | iterator.prototype@1.1.2:
3736 | dependencies:
3737 | define-properties: 1.2.1
3738 | get-intrinsic: 1.2.4
3739 | has-symbols: 1.0.3
3740 | reflect.getprototypeof: 1.0.6
3741 | set-function-name: 2.0.2
3742 |
3743 | jackspeak@3.4.3:
3744 | dependencies:
3745 | '@isaacs/cliui': 8.0.2
3746 | optionalDependencies:
3747 | '@pkgjs/parseargs': 0.11.0
3748 |
3749 | jiti@1.21.6: {}
3750 |
3751 | js-cookie@3.0.5: {}
3752 |
3753 | js-tokens@4.0.0: {}
3754 |
3755 | js-yaml@4.1.0:
3756 | dependencies:
3757 | argparse: 2.0.1
3758 |
3759 | jsesc@2.5.2: {}
3760 |
3761 | json-buffer@3.0.1: {}
3762 |
3763 | json-lines@1.0.0:
3764 | dependencies:
3765 | timer2: 1.0.0
3766 |
3767 | json-schema-traverse@0.4.1: {}
3768 |
3769 | json-stable-stringify-without-jsonify@1.0.1: {}
3770 |
3771 | json5@2.2.3: {}
3772 |
3773 | jsonwebtoken@8.5.0:
3774 | dependencies:
3775 | jws: 3.2.2
3776 | lodash.includes: 4.3.0
3777 | lodash.isboolean: 3.0.3
3778 | lodash.isinteger: 4.0.4
3779 | lodash.isnumber: 3.0.3
3780 | lodash.isplainobject: 4.0.6
3781 | lodash.isstring: 4.0.1
3782 | lodash.once: 4.1.1
3783 | ms: 2.1.2
3784 | semver: 5.7.2
3785 |
3786 | jsx-ast-utils@3.3.5:
3787 | dependencies:
3788 | array-includes: 3.1.8
3789 | array.prototype.flat: 1.3.2
3790 | object.assign: 4.1.5
3791 | object.values: 1.2.0
3792 |
3793 | jwa@1.4.1:
3794 | dependencies:
3795 | buffer-equal-constant-time: 1.0.1
3796 | ecdsa-sig-formatter: 1.0.11
3797 | safe-buffer: 5.2.1
3798 |
3799 | jws@3.2.2:
3800 | dependencies:
3801 | jwa: 1.4.1
3802 | safe-buffer: 5.2.1
3803 |
3804 | keyv@4.5.4:
3805 | dependencies:
3806 | json-buffer: 3.0.1
3807 |
3808 | levn@0.4.1:
3809 | dependencies:
3810 | prelude-ls: 1.2.1
3811 | type-check: 0.4.0
3812 |
3813 | lilconfig@2.1.0: {}
3814 |
3815 | lilconfig@3.1.2: {}
3816 |
3817 | limes@2.0.0:
3818 | dependencies:
3819 | '@babel/runtime': 7.3.4
3820 | jsonwebtoken: 8.5.0
3821 |
3822 | lines-and-columns@1.2.4: {}
3823 |
3824 | locate-path@6.0.0:
3825 | dependencies:
3826 | p-locate: 5.0.0
3827 |
3828 | lodash.includes@4.3.0: {}
3829 |
3830 | lodash.isboolean@3.0.3: {}
3831 |
3832 | lodash.isinteger@4.0.4: {}
3833 |
3834 | lodash.isnumber@3.0.3: {}
3835 |
3836 | lodash.isplainobject@4.0.6: {}
3837 |
3838 | lodash.isstring@4.0.1: {}
3839 |
3840 | lodash.merge@4.6.2: {}
3841 |
3842 | lodash.once@4.1.1: {}
3843 |
3844 | lodash@4.17.11: {}
3845 |
3846 | lodash@4.17.5: {}
3847 |
3848 | loose-envify@1.4.0:
3849 | dependencies:
3850 | js-tokens: 4.0.0
3851 |
3852 | lru-cache@10.4.3: {}
3853 |
3854 | lru-cache@5.1.1:
3855 | dependencies:
3856 | yallist: 3.1.1
3857 |
3858 | lusca@1.6.1:
3859 | dependencies:
3860 | tsscmp: 1.0.6
3861 |
3862 | make-error@1.3.6: {}
3863 |
3864 | media-typer@0.3.0: {}
3865 |
3866 | merge-descriptors@1.0.1: {}
3867 |
3868 | merge2@1.4.1: {}
3869 |
3870 | methods@1.1.2: {}
3871 |
3872 | micromatch@4.0.7:
3873 | dependencies:
3874 | braces: 3.0.3
3875 | picomatch: 2.3.1
3876 |
3877 | mime-db@1.52.0: {}
3878 |
3879 | mime-db@1.53.0: {}
3880 |
3881 | mime-types@2.1.35:
3882 | dependencies:
3883 | mime-db: 1.52.0
3884 |
3885 | mime@1.4.1: {}
3886 |
3887 | minimatch@3.1.2:
3888 | dependencies:
3889 | brace-expansion: 1.1.11
3890 |
3891 | minimatch@9.0.5:
3892 | dependencies:
3893 | brace-expansion: 2.0.1
3894 |
3895 | minipass@7.1.2: {}
3896 |
3897 | moment@2.22.2: {}
3898 |
3899 | morgan@1.9.1:
3900 | dependencies:
3901 | basic-auth: 2.0.1
3902 | debug: 2.6.9
3903 | depd: 1.1.2
3904 | on-finished: 2.3.0
3905 | on-headers: 1.0.2
3906 | transitivePeerDependencies:
3907 | - supports-color
3908 |
3909 | ms@2.0.0: {}
3910 |
3911 | ms@2.1.2: {}
3912 |
3913 | mz@2.7.0:
3914 | dependencies:
3915 | any-promise: 1.3.0
3916 | object-assign: 4.1.1
3917 | thenify-all: 1.6.0
3918 |
3919 | nanoid@3.3.7: {}
3920 |
3921 | natural-compare@1.4.0: {}
3922 |
3923 | negotiator@0.6.3: {}
3924 |
3925 | nocache@2.0.0: {}
3926 |
3927 | node-releases@2.0.14: {}
3928 |
3929 | node-rsa@0.4.2:
3930 | dependencies:
3931 | asn1: 0.2.3
3932 |
3933 | node-statsd@0.1.1: {}
3934 |
3935 | normalize-path@3.0.0: {}
3936 |
3937 | normalize-range@0.1.2: {}
3938 |
3939 | object-assign@4.1.1: {}
3940 |
3941 | object-hash@3.0.0: {}
3942 |
3943 | object-inspect@1.13.2: {}
3944 |
3945 | object-keys@1.1.1: {}
3946 |
3947 | object.assign@4.1.5:
3948 | dependencies:
3949 | call-bind: 1.0.7
3950 | define-properties: 1.2.1
3951 | has-symbols: 1.0.3
3952 | object-keys: 1.1.1
3953 |
3954 | object.entries@1.1.8:
3955 | dependencies:
3956 | call-bind: 1.0.7
3957 | define-properties: 1.2.1
3958 | es-object-atoms: 1.0.0
3959 |
3960 | object.fromentries@2.0.8:
3961 | dependencies:
3962 | call-bind: 1.0.7
3963 | define-properties: 1.2.1
3964 | es-abstract: 1.23.3
3965 | es-object-atoms: 1.0.0
3966 |
3967 | object.getownpropertydescriptors@2.1.8:
3968 | dependencies:
3969 | array.prototype.reduce: 1.0.7
3970 | call-bind: 1.0.7
3971 | define-properties: 1.2.1
3972 | es-abstract: 1.23.3
3973 | es-object-atoms: 1.0.0
3974 | gopd: 1.0.1
3975 | safe-array-concat: 1.1.2
3976 |
3977 | object.values@1.2.0:
3978 | dependencies:
3979 | call-bind: 1.0.7
3980 | define-properties: 1.2.1
3981 | es-object-atoms: 1.0.0
3982 |
3983 | on-finished@2.3.0:
3984 | dependencies:
3985 | ee-first: 1.1.1
3986 |
3987 | on-headers@1.0.2: {}
3988 |
3989 | optionator@0.9.4:
3990 | dependencies:
3991 | deep-is: 0.1.4
3992 | fast-levenshtein: 2.0.6
3993 | levn: 0.4.1
3994 | prelude-ls: 1.2.1
3995 | type-check: 0.4.0
3996 | word-wrap: 1.2.5
3997 |
3998 | p-limit@3.1.0:
3999 | dependencies:
4000 | yocto-queue: 0.1.0
4001 |
4002 | p-locate@5.0.0:
4003 | dependencies:
4004 | p-limit: 3.1.0
4005 |
4006 | package-json-from-dist@1.0.0: {}
4007 |
4008 | parent-module@1.0.1:
4009 | dependencies:
4010 | callsites: 3.1.0
4011 |
4012 | parseurl@1.3.3: {}
4013 |
4014 | partof@1.0.0: {}
4015 |
4016 | path-exists@4.0.0: {}
4017 |
4018 | path-key@3.1.1: {}
4019 |
4020 | path-parse@1.0.7: {}
4021 |
4022 | path-scurry@1.11.1:
4023 | dependencies:
4024 | lru-cache: 10.4.3
4025 | minipass: 7.1.2
4026 |
4027 | path-to-regexp@0.1.7: {}
4028 |
4029 | picocolors@1.0.1: {}
4030 |
4031 | picomatch@2.3.1: {}
4032 |
4033 | pify@2.3.0: {}
4034 |
4035 | pirates@4.0.6: {}
4036 |
4037 | possible-typed-array-names@1.0.0: {}
4038 |
4039 | postcss-import@15.1.0(postcss@8.4.40):
4040 | dependencies:
4041 | postcss: 8.4.40
4042 | postcss-value-parser: 4.2.0
4043 | read-cache: 1.0.0
4044 | resolve: 1.22.8
4045 |
4046 | postcss-js@4.0.1(postcss@8.4.40):
4047 | dependencies:
4048 | camelcase-css: 2.0.1
4049 | postcss: 8.4.40
4050 |
4051 | postcss-load-config@4.0.2(postcss@8.4.40)(ts-node@10.9.2(@types/node@22.0.0)(typescript@5.5.4)):
4052 | dependencies:
4053 | lilconfig: 3.1.2
4054 | yaml: 2.5.0
4055 | optionalDependencies:
4056 | postcss: 8.4.40
4057 | ts-node: 10.9.2(@types/node@22.0.0)(typescript@5.5.4)
4058 |
4059 | postcss-nested@6.2.0(postcss@8.4.40):
4060 | dependencies:
4061 | postcss: 8.4.40
4062 | postcss-selector-parser: 6.1.1
4063 |
4064 | postcss-selector-parser@6.1.1:
4065 | dependencies:
4066 | cssesc: 3.0.0
4067 | util-deprecate: 1.0.2
4068 |
4069 | postcss-value-parser@4.2.0: {}
4070 |
4071 | postcss@8.4.40:
4072 | dependencies:
4073 | nanoid: 3.3.7
4074 | picocolors: 1.0.1
4075 | source-map-js: 1.2.0
4076 |
4077 | prelude-ls@1.2.1: {}
4078 |
4079 | prettier@3.3.3: {}
4080 |
4081 | processenv@1.1.0:
4082 | dependencies:
4083 | babel-runtime: 6.26.0
4084 |
4085 | prop-types@15.8.1:
4086 | dependencies:
4087 | loose-envify: 1.4.0
4088 | object-assign: 4.1.1
4089 | react-is: 16.13.1
4090 |
4091 | proxy-addr@2.0.7:
4092 | dependencies:
4093 | forwarded: 0.2.0
4094 | ipaddr.js: 1.9.1
4095 |
4096 | punycode@2.3.1: {}
4097 |
4098 | qs@6.5.2: {}
4099 |
4100 | queue-microtask@1.2.3: {}
4101 |
4102 | range-parser@1.2.1: {}
4103 |
4104 | raw-body@2.3.3:
4105 | dependencies:
4106 | bytes: 3.0.0
4107 | http-errors: 1.6.3
4108 | iconv-lite: 0.4.23
4109 | unpipe: 1.0.0
4110 |
4111 | react-dom@18.3.1(react@18.3.1):
4112 | dependencies:
4113 | loose-envify: 1.4.0
4114 | react: 18.3.1
4115 | scheduler: 0.23.2
4116 |
4117 | react-is@16.13.1: {}
4118 |
4119 | react-refresh@0.14.2: {}
4120 |
4121 | react-router-dom@6.25.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4122 | dependencies:
4123 | '@remix-run/router': 1.18.0
4124 | react: 18.3.1
4125 | react-dom: 18.3.1(react@18.3.1)
4126 | react-router: 6.25.1(react@18.3.1)
4127 |
4128 | react-router@6.25.1(react@18.3.1):
4129 | dependencies:
4130 | '@remix-run/router': 1.18.0
4131 | react: 18.3.1
4132 |
4133 | react@18.3.1:
4134 | dependencies:
4135 | loose-envify: 1.4.0
4136 |
4137 | read-cache@1.0.0:
4138 | dependencies:
4139 | pify: 2.3.0
4140 |
4141 | readable-stream@1.1.14:
4142 | dependencies:
4143 | core-util-is: 1.0.3
4144 | inherits: 2.0.4
4145 | isarray: 0.0.1
4146 | string_decoder: 0.10.31
4147 |
4148 | readable-stream@3.6.2:
4149 | dependencies:
4150 | inherits: 2.0.4
4151 | string_decoder: 1.3.0
4152 | util-deprecate: 1.0.2
4153 |
4154 | readdirp@3.6.0:
4155 | dependencies:
4156 | picomatch: 2.3.1
4157 |
4158 | reflect.getprototypeof@1.0.6:
4159 | dependencies:
4160 | call-bind: 1.0.7
4161 | define-properties: 1.2.1
4162 | es-abstract: 1.23.3
4163 | es-errors: 1.3.0
4164 | get-intrinsic: 1.2.4
4165 | globalthis: 1.0.4
4166 | which-builtin-type: 1.1.3
4167 |
4168 | regenerator-runtime@0.11.1: {}
4169 |
4170 | regenerator-runtime@0.12.1: {}
4171 |
4172 | regexp.prototype.flags@1.5.2:
4173 | dependencies:
4174 | call-bind: 1.0.7
4175 | define-properties: 1.2.1
4176 | es-errors: 1.3.0
4177 | set-function-name: 2.0.2
4178 |
4179 | resolve-from@4.0.0: {}
4180 |
4181 | resolve@1.22.8:
4182 | dependencies:
4183 | is-core-module: 2.14.0
4184 | path-parse: 1.0.7
4185 | supports-preserve-symlinks-flag: 1.0.0
4186 |
4187 | resolve@2.0.0-next.5:
4188 | dependencies:
4189 | is-core-module: 2.14.0
4190 | path-parse: 1.0.7
4191 | supports-preserve-symlinks-flag: 1.0.0
4192 |
4193 | retry@0.12.0: {}
4194 |
4195 | reusify@1.0.4: {}
4196 |
4197 | rollup@4.18.1:
4198 | dependencies:
4199 | '@types/estree': 1.0.5
4200 | optionalDependencies:
4201 | '@rollup/rollup-android-arm-eabi': 4.18.1
4202 | '@rollup/rollup-android-arm64': 4.18.1
4203 | '@rollup/rollup-darwin-arm64': 4.18.1
4204 | '@rollup/rollup-darwin-x64': 4.18.1
4205 | '@rollup/rollup-linux-arm-gnueabihf': 4.18.1
4206 | '@rollup/rollup-linux-arm-musleabihf': 4.18.1
4207 | '@rollup/rollup-linux-arm64-gnu': 4.18.1
4208 | '@rollup/rollup-linux-arm64-musl': 4.18.1
4209 | '@rollup/rollup-linux-powerpc64le-gnu': 4.18.1
4210 | '@rollup/rollup-linux-riscv64-gnu': 4.18.1
4211 | '@rollup/rollup-linux-s390x-gnu': 4.18.1
4212 | '@rollup/rollup-linux-x64-gnu': 4.18.1
4213 | '@rollup/rollup-linux-x64-musl': 4.18.1
4214 | '@rollup/rollup-win32-arm64-msvc': 4.18.1
4215 | '@rollup/rollup-win32-ia32-msvc': 4.18.1
4216 | '@rollup/rollup-win32-x64-msvc': 4.18.1
4217 | fsevents: 2.3.3
4218 |
4219 | run-parallel@1.2.0:
4220 | dependencies:
4221 | queue-microtask: 1.2.3
4222 |
4223 | safe-array-concat@1.1.2:
4224 | dependencies:
4225 | call-bind: 1.0.7
4226 | get-intrinsic: 1.2.4
4227 | has-symbols: 1.0.3
4228 | isarray: 2.0.5
4229 |
4230 | safe-buffer@5.1.2: {}
4231 |
4232 | safe-buffer@5.2.1: {}
4233 |
4234 | safe-regex-test@1.0.3:
4235 | dependencies:
4236 | call-bind: 1.0.7
4237 | es-errors: 1.3.0
4238 | is-regex: 1.1.4
4239 |
4240 | safer-buffer@2.1.2: {}
4241 |
4242 | scheduler@0.23.2:
4243 | dependencies:
4244 | loose-envify: 1.4.0
4245 |
4246 | semver@5.7.2: {}
4247 |
4248 | semver@6.3.1: {}
4249 |
4250 | send@0.16.2:
4251 | dependencies:
4252 | debug: 2.6.9
4253 | depd: 1.1.2
4254 | destroy: 1.0.4
4255 | encodeurl: 1.0.2
4256 | escape-html: 1.0.3
4257 | etag: 1.8.1
4258 | fresh: 0.5.2
4259 | http-errors: 1.6.3
4260 | mime: 1.4.1
4261 | ms: 2.0.0
4262 | on-finished: 2.3.0
4263 | range-parser: 1.2.1
4264 | statuses: 1.4.0
4265 | transitivePeerDependencies:
4266 | - supports-color
4267 |
4268 | serve-static@1.13.2:
4269 | dependencies:
4270 | encodeurl: 1.0.2
4271 | escape-html: 1.0.3
4272 | parseurl: 1.3.3
4273 | send: 0.16.2
4274 | transitivePeerDependencies:
4275 | - supports-color
4276 |
4277 | set-function-length@1.2.2:
4278 | dependencies:
4279 | define-data-property: 1.1.4
4280 | es-errors: 1.3.0
4281 | function-bind: 1.1.2
4282 | get-intrinsic: 1.2.4
4283 | gopd: 1.0.1
4284 | has-property-descriptors: 1.0.2
4285 |
4286 | set-function-name@2.0.2:
4287 | dependencies:
4288 | define-data-property: 1.1.4
4289 | es-errors: 1.3.0
4290 | functions-have-names: 1.2.3
4291 | has-property-descriptors: 1.0.2
4292 |
4293 | setprototypeof@1.1.0: {}
4294 |
4295 | sha-1@0.1.1: {}
4296 |
4297 | shebang-command@2.0.0:
4298 | dependencies:
4299 | shebang-regex: 3.0.0
4300 |
4301 | shebang-regex@3.0.0: {}
4302 |
4303 | side-channel@1.0.6:
4304 | dependencies:
4305 | call-bind: 1.0.7
4306 | es-errors: 1.3.0
4307 | get-intrinsic: 1.2.4
4308 | object-inspect: 1.13.2
4309 |
4310 | signal-exit@4.1.0: {}
4311 |
4312 | source-map-js@1.2.0: {}
4313 |
4314 | split2@3.0.0:
4315 | dependencies:
4316 | readable-stream: 3.6.2
4317 |
4318 | stack-trace@0.0.10: {}
4319 |
4320 | statuses@1.4.0: {}
4321 |
4322 | statuses@1.5.0: {}
4323 |
4324 | std-env@3.7.0: {}
4325 |
4326 | stethoskop@1.0.0:
4327 | dependencies:
4328 | node-statsd: 0.1.1
4329 |
4330 | string-width@4.2.3:
4331 | dependencies:
4332 | emoji-regex: 8.0.0
4333 | is-fullwidth-code-point: 3.0.0
4334 | strip-ansi: 6.0.1
4335 |
4336 | string-width@5.1.2:
4337 | dependencies:
4338 | eastasianwidth: 0.2.0
4339 | emoji-regex: 9.2.2
4340 | strip-ansi: 7.1.0
4341 |
4342 | string.prototype.matchall@4.0.11:
4343 | dependencies:
4344 | call-bind: 1.0.7
4345 | define-properties: 1.2.1
4346 | es-abstract: 1.23.3
4347 | es-errors: 1.3.0
4348 | es-object-atoms: 1.0.0
4349 | get-intrinsic: 1.2.4
4350 | gopd: 1.0.1
4351 | has-symbols: 1.0.3
4352 | internal-slot: 1.0.7
4353 | regexp.prototype.flags: 1.5.2
4354 | set-function-name: 2.0.2
4355 | side-channel: 1.0.6
4356 |
4357 | string.prototype.repeat@1.0.0:
4358 | dependencies:
4359 | define-properties: 1.2.1
4360 | es-abstract: 1.23.3
4361 |
4362 | string.prototype.trim@1.2.9:
4363 | dependencies:
4364 | call-bind: 1.0.7
4365 | define-properties: 1.2.1
4366 | es-abstract: 1.23.3
4367 | es-object-atoms: 1.0.0
4368 |
4369 | string.prototype.trimend@1.0.8:
4370 | dependencies:
4371 | call-bind: 1.0.7
4372 | define-properties: 1.2.1
4373 | es-object-atoms: 1.0.0
4374 |
4375 | string.prototype.trimstart@1.0.8:
4376 | dependencies:
4377 | call-bind: 1.0.7
4378 | define-properties: 1.2.1
4379 | es-object-atoms: 1.0.0
4380 |
4381 | string_decoder@0.10.31: {}
4382 |
4383 | string_decoder@1.3.0:
4384 | dependencies:
4385 | safe-buffer: 5.2.1
4386 |
4387 | stringify-object@3.3.0:
4388 | dependencies:
4389 | get-own-enumerable-property-symbols: 3.0.2
4390 | is-obj: 1.0.1
4391 | is-regexp: 1.0.0
4392 |
4393 | strip-ansi@6.0.1:
4394 | dependencies:
4395 | ansi-regex: 5.0.1
4396 |
4397 | strip-ansi@7.1.0:
4398 | dependencies:
4399 | ansi-regex: 6.0.1
4400 |
4401 | strip-json-comments@3.1.1: {}
4402 |
4403 | sucrase@3.35.0:
4404 | dependencies:
4405 | '@jridgewell/gen-mapping': 0.3.5
4406 | commander: 4.1.1
4407 | glob: 10.4.5
4408 | lines-and-columns: 1.2.4
4409 | mz: 2.7.0
4410 | pirates: 4.0.6
4411 | ts-interface-checker: 0.1.13
4412 |
4413 | supports-color@5.5.0:
4414 | dependencies:
4415 | has-flag: 3.0.0
4416 |
4417 | supports-color@7.2.0:
4418 | dependencies:
4419 | has-flag: 4.0.0
4420 |
4421 | supports-preserve-symlinks-flag@1.0.0: {}
4422 |
4423 | swr@2.2.5(react@18.3.1):
4424 | dependencies:
4425 | client-only: 0.0.1
4426 | react: 18.3.1
4427 | use-sync-external-store: 1.2.2(react@18.3.1)
4428 |
4429 | tailwind@4.0.0:
4430 | dependencies:
4431 | '@babel/runtime': 7.3.4
4432 | ajv: 6.10.0
4433 | app-root-path: 2.1.0
4434 | async-retry: 1.2.3
4435 | body-parser: 1.18.3
4436 | commands-events: 1.0.4
4437 | compression: 1.7.3
4438 | content-type: 1.0.4
4439 | cors: 2.8.5
4440 | crypto2: 2.0.0
4441 | datasette: 1.0.1
4442 | draht: 1.0.1
4443 | express: 4.16.4
4444 | flaschenpost: 1.1.3
4445 | hase: 2.0.0
4446 | json-lines: 1.0.0
4447 | limes: 2.0.0
4448 | lodash: 4.17.11
4449 | lusca: 1.6.1
4450 | morgan: 1.9.1
4451 | nocache: 2.0.0
4452 | partof: 1.0.0
4453 | processenv: 1.1.0
4454 | stethoskop: 1.0.0
4455 | timer2: 1.0.0
4456 | uuidv4: 3.0.1
4457 | ws: 6.2.0
4458 | transitivePeerDependencies:
4459 | - bufferutil
4460 | - supports-color
4461 | - utf-8-validate
4462 |
4463 | tailwindcss@3.4.7(ts-node@10.9.2(@types/node@22.0.0)(typescript@5.5.4)):
4464 | dependencies:
4465 | '@alloc/quick-lru': 5.2.0
4466 | arg: 5.0.2
4467 | chokidar: 3.6.0
4468 | didyoumean: 1.2.2
4469 | dlv: 1.1.3
4470 | fast-glob: 3.3.2
4471 | glob-parent: 6.0.2
4472 | is-glob: 4.0.3
4473 | jiti: 1.21.6
4474 | lilconfig: 2.1.0
4475 | micromatch: 4.0.7
4476 | normalize-path: 3.0.0
4477 | object-hash: 3.0.0
4478 | picocolors: 1.0.1
4479 | postcss: 8.4.40
4480 | postcss-import: 15.1.0(postcss@8.4.40)
4481 | postcss-js: 4.0.1(postcss@8.4.40)
4482 | postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@10.9.2(@types/node@22.0.0)(typescript@5.5.4))
4483 | postcss-nested: 6.2.0(postcss@8.4.40)
4484 | postcss-selector-parser: 6.1.1
4485 | resolve: 1.22.8
4486 | sucrase: 3.35.0
4487 | transitivePeerDependencies:
4488 | - ts-node
4489 |
4490 | text-table@0.2.0: {}
4491 |
4492 | thenify-all@1.6.0:
4493 | dependencies:
4494 | thenify: 3.3.1
4495 |
4496 | thenify@3.3.1:
4497 | dependencies:
4498 | any-promise: 1.3.0
4499 |
4500 | timer2@1.0.0: {}
4501 |
4502 | to-fast-properties@2.0.0: {}
4503 |
4504 | to-regex-range@5.0.1:
4505 | dependencies:
4506 | is-number: 7.0.0
4507 |
4508 | ts-interface-checker@0.1.13: {}
4509 |
4510 | ts-node@10.9.2(@types/node@22.0.0)(typescript@5.5.4):
4511 | dependencies:
4512 | '@cspotcode/source-map-support': 0.8.1
4513 | '@tsconfig/node10': 1.0.11
4514 | '@tsconfig/node12': 1.0.11
4515 | '@tsconfig/node14': 1.0.3
4516 | '@tsconfig/node16': 1.0.4
4517 | '@types/node': 22.0.0
4518 | acorn: 8.12.1
4519 | acorn-walk: 8.3.3
4520 | arg: 4.1.3
4521 | create-require: 1.1.1
4522 | diff: 4.0.2
4523 | make-error: 1.3.6
4524 | typescript: 5.5.4
4525 | v8-compile-cache-lib: 3.0.1
4526 | yn: 3.1.1
4527 |
4528 | tslib@2.4.1: {}
4529 |
4530 | tsscmp@1.0.6: {}
4531 |
4532 | type-check@0.4.0:
4533 | dependencies:
4534 | prelude-ls: 1.2.1
4535 |
4536 | type-is@1.6.18:
4537 | dependencies:
4538 | media-typer: 0.3.0
4539 | mime-types: 2.1.35
4540 |
4541 | typed-array-buffer@1.0.2:
4542 | dependencies:
4543 | call-bind: 1.0.7
4544 | es-errors: 1.3.0
4545 | is-typed-array: 1.1.13
4546 |
4547 | typed-array-byte-length@1.0.1:
4548 | dependencies:
4549 | call-bind: 1.0.7
4550 | for-each: 0.3.3
4551 | gopd: 1.0.1
4552 | has-proto: 1.0.3
4553 | is-typed-array: 1.1.13
4554 |
4555 | typed-array-byte-offset@1.0.2:
4556 | dependencies:
4557 | available-typed-arrays: 1.0.7
4558 | call-bind: 1.0.7
4559 | for-each: 0.3.3
4560 | gopd: 1.0.1
4561 | has-proto: 1.0.3
4562 | is-typed-array: 1.1.13
4563 |
4564 | typed-array-length@1.0.6:
4565 | dependencies:
4566 | call-bind: 1.0.7
4567 | for-each: 0.3.3
4568 | gopd: 1.0.1
4569 | has-proto: 1.0.3
4570 | is-typed-array: 1.1.13
4571 | possible-typed-array-names: 1.0.0
4572 |
4573 | typescript@5.5.4: {}
4574 |
4575 | unbox-primitive@1.0.2:
4576 | dependencies:
4577 | call-bind: 1.0.7
4578 | has-bigints: 1.0.2
4579 | has-symbols: 1.0.3
4580 | which-boxed-primitive: 1.0.2
4581 |
4582 | undici-types@6.11.1: {}
4583 |
4584 | unpipe@1.0.0: {}
4585 |
4586 | untildify@3.0.3: {}
4587 |
4588 | update-browserslist-db@1.1.0(browserslist@4.23.2):
4589 | dependencies:
4590 | browserslist: 4.23.2
4591 | escalade: 3.1.2
4592 | picocolors: 1.0.1
4593 |
4594 | uri-js@4.4.1:
4595 | dependencies:
4596 | punycode: 2.3.1
4597 |
4598 | use-sync-external-store@1.2.2(react@18.3.1):
4599 | dependencies:
4600 | react: 18.3.1
4601 |
4602 | util-deprecate@1.0.2: {}
4603 |
4604 | util.promisify@1.0.0:
4605 | dependencies:
4606 | define-properties: 1.2.1
4607 | object.getownpropertydescriptors: 2.1.8
4608 |
4609 | utils-merge@1.0.1: {}
4610 |
4611 | uuid@3.3.2: {}
4612 |
4613 | uuidv4@2.0.0:
4614 | dependencies:
4615 | sha-1: 0.1.1
4616 | uuid: 3.3.2
4617 |
4618 | uuidv4@3.0.1:
4619 | dependencies:
4620 | uuid: 3.3.2
4621 |
4622 | v8-compile-cache-lib@3.0.1: {}
4623 |
4624 | varname@2.0.3: {}
4625 |
4626 | vary@1.1.2: {}
4627 |
4628 | vite@5.3.5(@types/node@22.0.0):
4629 | dependencies:
4630 | esbuild: 0.21.5
4631 | postcss: 8.4.40
4632 | rollup: 4.18.1
4633 | optionalDependencies:
4634 | '@types/node': 22.0.0
4635 | fsevents: 2.3.3
4636 |
4637 | which-boxed-primitive@1.0.2:
4638 | dependencies:
4639 | is-bigint: 1.0.4
4640 | is-boolean-object: 1.1.2
4641 | is-number-object: 1.0.7
4642 | is-string: 1.0.7
4643 | is-symbol: 1.0.4
4644 |
4645 | which-builtin-type@1.1.3:
4646 | dependencies:
4647 | function.prototype.name: 1.1.6
4648 | has-tostringtag: 1.0.2
4649 | is-async-function: 2.0.0
4650 | is-date-object: 1.0.5
4651 | is-finalizationregistry: 1.0.2
4652 | is-generator-function: 1.0.10
4653 | is-regex: 1.1.4
4654 | is-weakref: 1.0.2
4655 | isarray: 2.0.5
4656 | which-boxed-primitive: 1.0.2
4657 | which-collection: 1.0.2
4658 | which-typed-array: 1.1.15
4659 |
4660 | which-collection@1.0.2:
4661 | dependencies:
4662 | is-map: 2.0.3
4663 | is-set: 2.0.3
4664 | is-weakmap: 2.0.2
4665 | is-weakset: 2.0.3
4666 |
4667 | which-typed-array@1.1.15:
4668 | dependencies:
4669 | available-typed-arrays: 1.0.7
4670 | call-bind: 1.0.7
4671 | for-each: 0.3.3
4672 | gopd: 1.0.1
4673 | has-tostringtag: 1.0.2
4674 |
4675 | which@2.0.2:
4676 | dependencies:
4677 | isexe: 2.0.0
4678 |
4679 | word-wrap@1.2.5: {}
4680 |
4681 | wrap-ansi@7.0.0:
4682 | dependencies:
4683 | ansi-styles: 4.3.0
4684 | string-width: 4.2.3
4685 | strip-ansi: 6.0.1
4686 |
4687 | wrap-ansi@8.1.0:
4688 | dependencies:
4689 | ansi-styles: 6.2.1
4690 | string-width: 5.1.2
4691 | strip-ansi: 7.1.0
4692 |
4693 | ws@6.2.0:
4694 | dependencies:
4695 | async-limiter: 1.0.1
4696 |
4697 | yallist@3.1.1: {}
4698 |
4699 | yaml@2.5.0: {}
4700 |
4701 | yn@3.1.1: {}
4702 |
4703 | yocto-queue@0.1.0: {}
4704 |
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/clerk/clerk-react-demo/9abc89eddba0bf132a677c82dcc89b2464c611e1/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/clerk/clerk-react-demo/9abc89eddba0bf132a677c82dcc89b2464c611e1/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/clerk/clerk-react-demo/9abc89eddba0bf132a677c82dcc89b2464c611e1/public/logo512.png
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "Clerk + React",
3 | "name": "Clerk React Starter",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/components/Header.tsx:
--------------------------------------------------------------------------------
1 | import { SignedIn, SignedOut, UserButton, useClerk } from '@clerk/clerk-react';
2 | import '../styles/Header.css';
3 |
4 | function SignUpButton() {
5 | const clerk = useClerk();
6 |
7 | return (
8 |
11 | );
12 | }
13 |
14 | function SignInButton() {
15 | const clerk = useClerk();
16 |
17 | return (
18 |
21 | );
22 | }
23 |
24 | function Header() {
25 | return (
26 |
27 |
44 |
45 | );
46 | }
47 |
48 | export default Header;
49 |
--------------------------------------------------------------------------------
/src/components/Layout.tsx:
--------------------------------------------------------------------------------
1 | import { Outlet } from 'react-router-dom';
2 | import Header from './Header';
3 |
4 | function Layout() {
5 | return (
6 | <>
7 |
8 |
9 |
10 | >
11 | );
12 | }
13 |
14 | export default Layout;
15 |
--------------------------------------------------------------------------------
/src/components/NoMatch.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 |
3 | function NoMatch() {
4 | return (
5 |
6 |
Page not found - 404
7 |
8 | Go to the home page
9 |
10 |
11 | );
12 | }
13 |
14 | export default NoMatch;
15 |
--------------------------------------------------------------------------------
/src/layouts/dashboard.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { useAuth } from '@clerk/clerk-react';
3 | import { Outlet, useNavigate } from 'react-router-dom';
4 |
5 | export default function DashboardLayout() {
6 | const { userId, isLoaded } = useAuth();
7 | const navigate = useNavigate();
8 |
9 | console.log('test', userId);
10 |
11 | React.useEffect(() => {
12 | if (isLoaded && !userId) {
13 | navigate('/sign-in');
14 | }
15 | }, [isLoaded]);
16 |
17 | if (!isLoaded) return 'Loading...';
18 |
19 | return ;
20 | }
21 |
--------------------------------------------------------------------------------
/src/layouts/root.tsx:
--------------------------------------------------------------------------------
1 | import { Link, Outlet, useNavigate } from 'react-router-dom';
2 | import {
3 | ClerkProvider,
4 | SignedIn,
5 | SignedOut,
6 | UserButton,
7 | } from '@clerk/clerk-react';
8 |
9 | const PUBLISHABLE_KEY = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY;
10 |
11 | if (!PUBLISHABLE_KEY) {
12 | throw new Error('Missing Publishable Key');
13 | }
14 |
15 | export default function RootLayout() {
16 | const navigate = useNavigate();
17 |
18 | return (
19 | navigate(to)}
21 | routerReplace={(to) => navigate(to, { replace: true })}
22 | publishableKey={PUBLISHABLE_KEY}
23 | >
24 |
25 |
26 |
27 |
Clerk + React + React Router App
28 |
29 |
30 |
31 |
32 |
33 | Sign In
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 | );
42 | }
43 |
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom/client';
3 | import './styles/index.css';
4 | import { RouterProvider, createBrowserRouter } from 'react-router-dom';
5 |
6 | // Import the layout components
7 | import RootLayout from './layouts/root';
8 | import DashboardLayout from './layouts/dashboard';
9 |
10 | // Import the route components
11 | import IndexPage from './routes';
12 | import ContactPage from './routes/contact';
13 | import SignInPage from './routes/sign-in';
14 | import SignUpPage from './routes/sign-up';
15 | import DashboardPage from './routes/dashboard';
16 | import InvoicesPage from './routes/invoices';
17 |
18 | // Loaders and Actions are NOT supported by Clerk at the moment with React Router
19 | const router = createBrowserRouter([
20 | {
21 | element: ,
22 | children: [
23 | { path: '/', element: },
24 | { path: '/contact', element: },
25 | { path: '/sign-in/*', element: },
26 | { path: '/sign-up/*', element: },
27 | {
28 | element: ,
29 | path: 'dashboard',
30 | children: [
31 | { path: '/dashboard', element: },
32 | { path: '/dashboard/invoices', element: },
33 | ],
34 | },
35 | ],
36 | },
37 | ]);
38 |
39 | ReactDOM.createRoot(document.getElementById('root')!).render(
40 |
41 |
42 |
43 | );
44 |
--------------------------------------------------------------------------------
/src/routes/contact.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 |
3 | export default function ContactPage() {
4 | return (
5 | <>
6 | Contact
7 |
8 | This is a public page meant to contain a contact form and other related
9 | contact details.
10 |
11 |
12 | -
13 | Return to Index
14 |
15 | -
16 | Dashboard
17 |
18 |
19 | >
20 | );
21 | }
22 |
--------------------------------------------------------------------------------
/src/routes/dashboard.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 |
3 | export default function DashboardPage() {
4 | return (
5 | <>
6 | Dashboard page
7 | This is a protected page.
8 |
9 |
10 | -
11 | Invoices
12 |
13 | -
14 | Return to index
15 |
16 |
17 | >
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/src/routes/index.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 |
3 | export default function IndexPage() {
4 | return (
5 |
6 |
This is the index page
7 |
8 |
9 | -
10 | Sign Up
11 |
12 | -
13 | Sign In
14 |
15 | -
16 | Contact
17 |
18 | -
19 | Dashboard
20 |
21 |
22 |
23 |
24 | );
25 | }
26 |
--------------------------------------------------------------------------------
/src/routes/invoices.tsx:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 |
3 | export default function InvoicesPage() {
4 | return (
5 | <>
6 | Invoices page
7 | This is a protected page.
8 |
9 |
10 | -
11 | Dashboard
12 |
13 | -
14 | Return to index
15 |
16 |
17 | >
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/src/routes/sign-in.tsx:
--------------------------------------------------------------------------------
1 | import { SignIn } from '@clerk/clerk-react';
2 |
3 | export default function SignInPage() {
4 | return ;
5 | }
6 |
--------------------------------------------------------------------------------
/src/routes/sign-up.tsx:
--------------------------------------------------------------------------------
1 | import { SignUp } from '@clerk/clerk-react';
2 |
3 | export default function SignUpPage() {
4 | return ;
5 | }
6 |
--------------------------------------------------------------------------------
/src/styles/App.css:
--------------------------------------------------------------------------------
1 | .app {
2 | color: white;
3 | font-size: calc(10px + 2vmin);
4 | text-align: center;
5 | display: flex;
6 | flex-direction: column;
7 | align-items: center;
8 | justify-content: center;
9 | padding-top: 100px;
10 | }
11 |
12 | .app h1 {
13 | margin: 0;
14 | }
15 |
16 | .app img {
17 | height: 40vmin;
18 | pointer-events: none;
19 | margin: 50px 0;
20 | }
21 |
22 | @media (prefers-reduced-motion: no-preference) {
23 | .app img {
24 | animation: App-logo-spin infinite 20s linear;
25 | }
26 | }
27 |
28 | .app a {
29 | color: #61dafb;
30 | }
31 |
32 | @keyframes App-logo-spin {
33 | from {
34 | transform: rotate(0deg);
35 | }
36 | to {
37 | transform: rotate(360deg);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/src/styles/Header.css:
--------------------------------------------------------------------------------
1 | header {
2 | padding: 0 30px;
3 | height: 100px;
4 | display: flex;
5 | align-items: center;
6 | justify-content: flex-end;
7 | }
8 |
9 | header ul {
10 | display: flex;
11 | }
12 |
13 | header li {
14 | list-style: none;
15 | display: block;
16 | }
17 |
18 | header button {
19 | background: none;
20 | border: none;
21 | border-radius: 10px;
22 | cursor: pointer;
23 | margin-left: 20px;
24 | padding: 10px 20px;
25 | text-decoration: none;
26 | font-size: 13px;
27 | font-weight: 700;
28 | text-transform: uppercase;
29 | }
30 |
31 | header .sign-up-btn {
32 | border: 1px solid #61dafb;
33 | color: #61dafb;
34 | }
35 |
36 | header .sign-in-btn {
37 | background: #61dafb;
38 | color: #282c34;
39 | }
40 |
--------------------------------------------------------------------------------
/src/styles/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | background-color: #282c34;
9 | min-height: 100vh;
10 | }
11 |
12 | code {
13 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
14 | monospace;
15 | }
16 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: [
4 | './pages/**/*.{js,ts,jsx,tsx,mdx}',
5 | './components/**/*.{js,ts,jsx,tsx,mdx}',
6 | './app/**/*.{js,ts,jsx,tsx,mdx}',
7 | ],
8 | theme: {
9 | extend: {
10 | colors: {
11 | 'primary-600': '#6C47FF',
12 | 'primary-700': '#5639CC',
13 | 'primary-50': '#F4F2FF',
14 | 'success-700': '#027A48',
15 | 'success-50': '#ECFDF3',
16 | },
17 | fontFamily: {
18 | sans: ['var(--font-geist-sans)'],
19 | mono: ['var(--font-geist-mono)'],
20 | },
21 | },
22 | },
23 | plugins: [],
24 | };
25 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 |
4 | "compilerOptions": {
5 | "target": "ESNext",
6 | "useDefineForClassFields": true,
7 | "lib": ["ESNext", "DOM", "DOM.Iterable"],
8 | "module": "ESNext",
9 | "skipLibCheck": true,
10 |
11 | /* Bundler mode */
12 | "moduleResolution": "bundler",
13 | "allowImportingTsExtensions": true,
14 | "resolveJsonModule": true,
15 | "isolatedModules": true,
16 | "noEmit": true,
17 | "jsx": "preserve",
18 | "esModuleInterop": true,
19 | "allowSyntheticDefaultImports": true,
20 |
21 | /* Linting */
22 | "strict": true,
23 | "noUnusedLocals": true,
24 | "noUnusedParameters": true,
25 | "noFallthroughCasesInSwitch": true
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | interface ImportMetaEnv {
4 | readonly VITE_CLERK_PUBLISHABLE_KEY: string;
5 | // Add other variables as needed
6 | }
7 |
8 | interface ImportMeta {
9 | readonly env: ImportMetaEnv;
10 | }
11 |
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite';
2 | import react from '@vitejs/plugin-react';
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | });
8 |
--------------------------------------------------------------------------------