├── src
├── bindings.d.ts
└── app
│ ├── actions.tsx
│ ├── favicon.ico
│ ├── layout.tsx
│ ├── globals.css
│ ├── ucan
│ └── route.ts
│ └── page.tsx
├── .eslintrc.json
├── next.config.mjs
├── postcss.config.mjs
├── .gitignore
├── tailwind.config.ts
├── public
├── vercel.svg
└── next.svg
├── README.md
├── tsconfig.json
├── package.json
└── pnpm-lock.yaml
/src/bindings.d.ts:
--------------------------------------------------------------------------------
1 | declare module 'array-from-async';
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/src/app/actions.tsx:
--------------------------------------------------------------------------------
1 | 'use server'
2 |
3 |
4 |
5 | function login(){
6 |
7 | }
--------------------------------------------------------------------------------
/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jchris/fireproof-cloud/main/src/app/favicon.ico
--------------------------------------------------------------------------------
/next.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {};
3 |
4 | export default nextConfig;
5 |
--------------------------------------------------------------------------------
/postcss.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('postcss-load-config').Config} */
2 | const config = {
3 | plugins: {
4 | tailwindcss: {},
5 | },
6 | };
7 |
8 | export default config;
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 | .yarn/install-state.gz
8 |
9 | # testing
10 | /coverage
11 |
12 | # next.js
13 | /.next/
14 | /out/
15 |
16 | # production
17 | /build
18 |
19 | # misc
20 | .DS_Store
21 | *.pem
22 |
23 | # debug
24 | npm-debug.log*
25 | yarn-debug.log*
26 | yarn-error.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
--------------------------------------------------------------------------------
/src/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import type { Metadata } from "next";
2 | import { Inter } from "next/font/google";
3 | import "./globals.css";
4 |
5 | const inter = Inter({ subsets: ["latin"] });
6 |
7 | export const metadata: Metadata = {
8 | title: "Create Next App",
9 | description: "Generated by create next app",
10 | };
11 |
12 | export default function RootLayout({
13 | children,
14 | }: Readonly<{
15 | children: React.ReactNode;
16 | }>) {
17 | return (
18 |
19 |
{children}
20 |
21 | );
22 | }
23 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from "tailwindcss";
2 |
3 | const config: Config = {
4 | content: [
5 | "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6 | "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7 | "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
8 | ],
9 | theme: {
10 | extend: {
11 | backgroundImage: {
12 | "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
13 | "gradient-conic":
14 | "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
15 | },
16 | },
17 | },
18 | plugins: [],
19 | };
20 | export default config;
21 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | ## Fireproof Cloud
3 |
4 | A Fireproof Cloud Web Console
5 |
6 | ### Development
7 |
8 | First, run the development server:
9 |
10 | ```bash
11 | npm run dev
12 | # or
13 | yarn dev
14 | # or
15 | pnpm dev
16 | # or
17 | bun dev
18 | ```
19 |
20 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
21 |
22 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
23 |
24 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
25 |
26 |
27 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": ["dom", "dom.iterable", "esnext"],
4 | "allowJs": true,
5 | "skipLibCheck": true,
6 | "strict": true,
7 | "noEmit": true,
8 | "esModuleInterop": true,
9 | "module": "esnext",
10 | "moduleResolution": "bundler",
11 | "resolveJsonModule": true,
12 | "isolatedModules": true,
13 | "jsx": "preserve",
14 | "incremental": true,
15 | "plugins": [
16 | {
17 | "name": "next"
18 | }
19 | ],
20 | "paths": {
21 | "@/*": ["./src/*"]
22 | }
23 | },
24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
25 | "exclude": ["node_modules"]
26 | }
27 |
--------------------------------------------------------------------------------
/src/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | :root {
6 | --foreground-rgb: 0, 0, 0;
7 | --background-start-rgb: 214, 219, 220;
8 | --background-end-rgb: 255, 255, 255;
9 | }
10 |
11 | @media (prefers-color-scheme: dark) {
12 | :root {
13 | --foreground-rgb: 255, 255, 255;
14 | --background-start-rgb: 0, 0, 0;
15 | --background-end-rgb: 0, 0, 0;
16 | }
17 | }
18 |
19 | body {
20 | color: rgb(var(--foreground-rgb));
21 | background: linear-gradient(
22 | to bottom,
23 | transparent,
24 | rgb(var(--background-end-rgb))
25 | )
26 | rgb(var(--background-start-rgb));
27 | }
28 |
29 | @layer utilities {
30 | .text-balance {
31 | text-wrap: balance;
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "fireproof-cloud",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@ucanto/principal": "^9.0.1",
13 | "@ucanto/server": "^10.0.0",
14 | "@ucanto/transport": "^9.1.1",
15 | "@web3-storage/upload-api": "^9.1.5",
16 | "array-from-async": "^3.0.0",
17 | "next": "14.2.2",
18 | "react": "^18",
19 | "react-dom": "^18"
20 | },
21 | "devDependencies": {
22 | "@types/node": "^20",
23 | "@types/react": "^18",
24 | "@types/react-dom": "^18",
25 | "eslint": "^8",
26 | "eslint-config-next": "14.2.2",
27 | "postcss": "^8",
28 | "tailwindcss": "^3.4.1",
29 | "typescript": "^5"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/ucan/route.ts:
--------------------------------------------------------------------------------
1 | import fromAsync from 'array-from-async';
2 | import { AccessServiceContext, ProvisionsStorage } from "@web3-storage/upload-api";
3 | import { createService as createAccessService } from "@web3-storage/upload-api/access";
4 | import * as Server from "@ucanto/server";
5 | import * as Signer from "@ucanto/principal/ed25519";
6 | import { CAR } from "@ucanto/transport";
7 |
8 |
9 | const createService = (context: AccessServiceContext) => ({
10 | access: createAccessService(context)
11 | })
12 |
13 | const idPromise = Signer.generate()
14 |
15 | // @ts-expect-error I think this is unused by the access service
16 | const provisionsStorage: ProvisionsStorage = null
17 |
18 | const POSTMARK_TOKEN = process.env.POSTMARK_TOKEN
19 |
20 | const createServer = async () => {
21 | const storedDelegations: Server.API.Delegation[] = []
22 | return Server.create({
23 | id: await idPromise,
24 | codec: CAR.inbound,
25 | service: createService({
26 | url: new URL('https://example.com'),
27 | signer: await idPromise,
28 | email: {
29 | sendValidation: async ({ to, url }) => {
30 | if (POSTMARK_TOKEN) {
31 | const rsp = await fetch('https://api.postmarkapp.com/email/withTemplate', {
32 | method: 'POST',
33 | headers: {
34 | Accept: 'text/json',
35 | 'Content-Type': 'text/json',
36 | 'X-Postmark-Server-Token': POSTMARK_TOKEN,
37 | },
38 | body: JSON.stringify({
39 | From: 'fireproof ',
40 | To: to,
41 | TemplateAlias: 'welcome',
42 | TemplateModel: {
43 | product_url: 'https://fireproof.storage',
44 | product_name: 'Fireproof Storage',
45 | email: to,
46 | action_url: url,
47 | },
48 | }),
49 | })
50 |
51 | if (!rsp.ok) {
52 | throw new Error(
53 | `Send email failed with status: ${rsp.status
54 | }, body: ${await rsp.text()}`
55 | )
56 | }
57 | } else {
58 | throw new Error("POSTMARK_TOKEN is not defined, can't send email")
59 | }
60 | }
61 | },
62 | provisionsStorage,
63 | rateLimitsStorage: {
64 | add: async () => ({ error: new Error('rate limits not supported') }),
65 | list: async () => ({ ok: [] }),
66 | remove: async () => ({ error: new Error('rate limits not supported') })
67 | },
68 | delegationsStorage: {
69 | putMany: async (delegations) => {
70 | storedDelegations.push(...delegations)
71 | return { ok: {} }
72 | },
73 | count: async () => BigInt(storedDelegations.length),
74 | find: async (audience) => {
75 | return { ok: storedDelegations.filter(delegation => delegation.audience.did() === audience.audience) }
76 | }
77 | }
78 | }),
79 | // validate all for now
80 | validateAuthorization: async () => ({ ok: {} })
81 | })
82 | }
83 |
84 | const serverPromise = createServer()
85 |
86 | export async function POST (request: Request) {
87 | const server = await serverPromise
88 | request.headers
89 | if (request.body) {
90 | const payload = {
91 | body: await fromAsync(request.body),
92 | headers: Object.fromEntries(request.headers)
93 | }
94 | const result = server.codec.accept(payload)
95 | if (result.error) {
96 | throw new Error(`accept failed! ${result.error}`)
97 | }
98 | const { encoder, decoder } = result.ok
99 | const incoming = await decoder.decode(payload)
100 | // @ts-ignore not totally sure how to fix the "unknown" casting here or check if it's needed
101 | const outgoing = await Server.execute(incoming, server)
102 | const response = await encoder.encode(outgoing)
103 | return response
104 | } else {
105 | throw new Error('no body!')
106 | }
107 |
108 | }
--------------------------------------------------------------------------------
/src/app/page.tsx:
--------------------------------------------------------------------------------
1 | import Image from "next/image";
2 |
3 | export default function Home() {
4 | return (
5 |
6 |
7 |
8 | Get started by editing
9 | src/app/page.tsx
10 |
11 |
29 |
30 |
31 |
32 |
40 |
41 |
42 |
111 |
112 | );
113 | }
114 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@ucanto/principal':
12 | specifier: ^9.0.1
13 | version: 9.0.1
14 | '@ucanto/server':
15 | specifier: ^10.0.0
16 | version: 10.0.0
17 | '@ucanto/transport':
18 | specifier: ^9.1.1
19 | version: 9.1.1
20 | '@web3-storage/upload-api':
21 | specifier: ^9.1.5
22 | version: 9.1.5
23 | array-from-async:
24 | specifier: ^3.0.0
25 | version: 3.0.0
26 | next:
27 | specifier: 14.2.2
28 | version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
29 | react:
30 | specifier: ^18
31 | version: 18.2.0
32 | react-dom:
33 | specifier: ^18
34 | version: 18.2.0(react@18.2.0)
35 | devDependencies:
36 | '@types/node':
37 | specifier: ^20
38 | version: 20.12.7
39 | '@types/react':
40 | specifier: ^18
41 | version: 18.2.79
42 | '@types/react-dom':
43 | specifier: ^18
44 | version: 18.2.25
45 | eslint:
46 | specifier: ^8
47 | version: 8.57.0
48 | eslint-config-next:
49 | specifier: 14.2.2
50 | version: 14.2.2(eslint@8.57.0)(typescript@5.4.5)
51 | postcss:
52 | specifier: ^8
53 | version: 8.4.38
54 | tailwindcss:
55 | specifier: ^3.4.1
56 | version: 3.4.3
57 | typescript:
58 | specifier: ^5
59 | version: 5.4.5
60 |
61 | packages:
62 |
63 | '@aashutoshrathi/word-wrap@1.2.6':
64 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
65 | engines: {node: '>=0.10.0'}
66 |
67 | '@alloc/quick-lru@5.2.0':
68 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
69 | engines: {node: '>=10'}
70 |
71 | '@babel/runtime@7.24.4':
72 | resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
73 | engines: {node: '>=6.9.0'}
74 |
75 | '@eslint-community/eslint-utils@4.4.0':
76 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
77 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
78 | peerDependencies:
79 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
80 |
81 | '@eslint-community/regexpp@4.10.0':
82 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
83 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
84 |
85 | '@eslint/eslintrc@2.1.4':
86 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
87 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
88 |
89 | '@eslint/js@8.57.0':
90 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
91 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
92 |
93 | '@humanwhocodes/config-array@0.11.14':
94 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
95 | engines: {node: '>=10.10.0'}
96 |
97 | '@humanwhocodes/module-importer@1.0.1':
98 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
99 | engines: {node: '>=12.22'}
100 |
101 | '@humanwhocodes/object-schema@2.0.3':
102 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
103 |
104 | '@ipld/car@5.3.0':
105 | resolution: {integrity: sha512-OB8LVvJeVAFFGluNIkZeDZ/aGeoekFKsuIvNT9I5sJIb5WekQuW5+lekjQ7Z7mZ7DBKuke/kI4jBT1j0/akU1w==}
106 | engines: {node: '>=16.0.0', npm: '>=7.0.0'}
107 |
108 | '@ipld/dag-cbor@9.2.0':
109 | resolution: {integrity: sha512-N14oMy0q4gM6OuZkIpisKe0JBSjf1Jb39VI+7jMLiWX9124u1Z3Fdj/Tag1NA0cVxxqWDh0CqsjcVfOKtelPDA==}
110 | engines: {node: '>=16.0.0', npm: '>=7.0.0'}
111 |
112 | '@ipld/dag-json@10.2.0':
113 | resolution: {integrity: sha512-O9YLUrl3d3WbVz7v1WkajFkyfOLEe2Fep+wor4fgVe0ywxzrivrj437NiPcVyB+2EDdFn/Q7tCHFf8YVhDf8ZA==}
114 | engines: {node: '>=16.0.0', npm: '>=7.0.0'}
115 |
116 | '@ipld/dag-ucan@3.4.0':
117 | resolution: {integrity: sha512-sW4R43w3DbEdoGWWJZCwsblwXa600HCanG9p2w1MJPVBNTNjhvqc3XI0uEqKhT2oqKWrND7uInVtcPmZme7hhA==}
118 |
119 | '@isaacs/cliui@8.0.2':
120 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
121 | engines: {node: '>=12'}
122 |
123 | '@jridgewell/gen-mapping@0.3.5':
124 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
125 | engines: {node: '>=6.0.0'}
126 |
127 | '@jridgewell/resolve-uri@3.1.2':
128 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
129 | engines: {node: '>=6.0.0'}
130 |
131 | '@jridgewell/set-array@1.2.1':
132 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
133 | engines: {node: '>=6.0.0'}
134 |
135 | '@jridgewell/sourcemap-codec@1.4.15':
136 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
137 |
138 | '@jridgewell/trace-mapping@0.3.25':
139 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
140 |
141 | '@next/env@14.2.2':
142 | resolution: {integrity: sha512-sk72qRfM1Q90XZWYRoJKu/UWlTgihrASiYw/scb15u+tyzcze3bOuJ/UV6TBOQEeUaxOkRqGeuGUdiiuxc5oqw==}
143 |
144 | '@next/eslint-plugin-next@14.2.2':
145 | resolution: {integrity: sha512-q+Ec2648JtBpKiu/FSJm8HAsFXlNvioHeBCbTP12T1SGcHYwhqHULSfQgFkPgHDu3kzNp2Kem4J54bK4rPQ5SQ==}
146 |
147 | '@next/swc-darwin-arm64@14.2.2':
148 | resolution: {integrity: sha512-3iPgMhzbalizGwHNFUcGnDhFPSgVBHQ8aqSTAMxB5BvJG0oYrDf1WOJZlbXBgunOEj/8KMVbejEur/FpvFsgFQ==}
149 | engines: {node: '>= 10'}
150 | cpu: [arm64]
151 | os: [darwin]
152 |
153 | '@next/swc-darwin-x64@14.2.2':
154 | resolution: {integrity: sha512-x7Afi/jt0ZBRUZHTi49yyej4o8znfIMHO4RvThuoc0P+uli8Jd99y5GKjxoYunPKsXL09xBXEM1+OQy2xEL0Ag==}
155 | engines: {node: '>= 10'}
156 | cpu: [x64]
157 | os: [darwin]
158 |
159 | '@next/swc-linux-arm64-gnu@14.2.2':
160 | resolution: {integrity: sha512-zbfPtkk7L41ODMJwSp5VbmPozPmMMQrzAc0HAUomVeVIIwlDGs/UCqLJvLNDt4jpWgc21SjjyIn762lNGrMaUA==}
161 | engines: {node: '>= 10'}
162 | cpu: [arm64]
163 | os: [linux]
164 |
165 | '@next/swc-linux-arm64-musl@14.2.2':
166 | resolution: {integrity: sha512-wPbS3pI/JU16rm3XdLvvTmlsmm1nd+sBa2ohXgBZcShX4TgOjD4R+RqHKlI1cjo/jDZKXt6OxmcU0Iys0OC/yg==}
167 | engines: {node: '>= 10'}
168 | cpu: [arm64]
169 | os: [linux]
170 |
171 | '@next/swc-linux-x64-gnu@14.2.2':
172 | resolution: {integrity: sha512-NqWOHqqq8iC9tuHvZxjQ2tX+jWy2X9y8NX2mcB4sj2bIccuCxbIZrU/ThFPZZPauygajZuVQ6zediejQHwZHwQ==}
173 | engines: {node: '>= 10'}
174 | cpu: [x64]
175 | os: [linux]
176 |
177 | '@next/swc-linux-x64-musl@14.2.2':
178 | resolution: {integrity: sha512-lGepHhwb9sGhCcU7999+iK1ZZT+6rrIoVg40MP7DZski9GIZP80wORSbt5kJzh9v2x2ev2lxC6VgwMQT0PcgTA==}
179 | engines: {node: '>= 10'}
180 | cpu: [x64]
181 | os: [linux]
182 |
183 | '@next/swc-win32-arm64-msvc@14.2.2':
184 | resolution: {integrity: sha512-TZSh/48SfcLEQ4rD25VVn2kdIgUWmMflRX3OiyPwGNXn3NiyPqhqei/BaqCYXViIQ+6QsG9R0C8LftMqy8JPMA==}
185 | engines: {node: '>= 10'}
186 | cpu: [arm64]
187 | os: [win32]
188 |
189 | '@next/swc-win32-ia32-msvc@14.2.2':
190 | resolution: {integrity: sha512-M0tBVNMEBJN2ZNQWlcekMn6pvLria7Sa2Fai5znm7CCJz4pP3lrvlSxhKdkCerk0D9E0bqx5yAo3o2Q7RrD4gA==}
191 | engines: {node: '>= 10'}
192 | cpu: [ia32]
193 | os: [win32]
194 |
195 | '@next/swc-win32-x64-msvc@14.2.2':
196 | resolution: {integrity: sha512-a/20E/wtTJZ3Ykv3f/8F0l7TtgQa2LWHU2oNB9bsu0VjqGuGGHmm/q6waoUNQYTVPYrrlxxaHjJcDV6aiSTt/w==}
197 | engines: {node: '>= 10'}
198 | cpu: [x64]
199 | os: [win32]
200 |
201 | '@noble/curves@1.4.0':
202 | resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
203 |
204 | '@noble/ed25519@1.7.3':
205 | resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==}
206 |
207 | '@noble/hashes@1.4.0':
208 | resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
209 | engines: {node: '>= 16'}
210 |
211 | '@nodelib/fs.scandir@2.1.5':
212 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
213 | engines: {node: '>= 8'}
214 |
215 | '@nodelib/fs.stat@2.0.5':
216 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
217 | engines: {node: '>= 8'}
218 |
219 | '@nodelib/fs.walk@1.2.8':
220 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
221 | engines: {node: '>= 8'}
222 |
223 | '@pkgjs/parseargs@0.11.0':
224 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
225 | engines: {node: '>=14'}
226 |
227 | '@rushstack/eslint-patch@1.10.2':
228 | resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
229 |
230 | '@scure/base@1.1.6':
231 | resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==}
232 |
233 | '@scure/bip39@1.3.0':
234 | resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
235 |
236 | '@swc/counter@0.1.3':
237 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
238 |
239 | '@swc/helpers@0.5.5':
240 | resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
241 |
242 | '@types/json5@0.0.29':
243 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
244 |
245 | '@types/node@20.12.7':
246 | resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
247 |
248 | '@types/prop-types@15.7.12':
249 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
250 |
251 | '@types/react-dom@18.2.25':
252 | resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
253 |
254 | '@types/react@18.2.79':
255 | resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==}
256 |
257 | '@types/retry@0.12.1':
258 | resolution: {integrity: sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==}
259 |
260 | '@typescript-eslint/parser@7.2.0':
261 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==}
262 | engines: {node: ^16.0.0 || >=18.0.0}
263 | peerDependencies:
264 | eslint: ^8.56.0
265 | typescript: '*'
266 | peerDependenciesMeta:
267 | typescript:
268 | optional: true
269 |
270 | '@typescript-eslint/scope-manager@7.2.0':
271 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
272 | engines: {node: ^16.0.0 || >=18.0.0}
273 |
274 | '@typescript-eslint/types@7.2.0':
275 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
276 | engines: {node: ^16.0.0 || >=18.0.0}
277 |
278 | '@typescript-eslint/typescript-estree@7.2.0':
279 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==}
280 | engines: {node: ^16.0.0 || >=18.0.0}
281 | peerDependencies:
282 | typescript: '*'
283 | peerDependenciesMeta:
284 | typescript:
285 | optional: true
286 |
287 | '@typescript-eslint/visitor-keys@7.2.0':
288 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
289 | engines: {node: ^16.0.0 || >=18.0.0}
290 |
291 | '@ucanto/client@9.0.1':
292 | resolution: {integrity: sha512-cV8w3AnaZaYCdUmyFFICj8YhFckDoy2DvWgAzGDMkPz0WbUW4lw9Tjm4hEE8x5kiP47wYej/pHKWCcoELiU0qw==}
293 |
294 | '@ucanto/core@10.0.1':
295 | resolution: {integrity: sha512-1BfUaJu0/c9Rl/WdZSDbScJJLsPsPe1g4ynl5kubUj3xDD/lyp/Q12PQVQ2X7hDiWwkpwmxCkRMkOxwc70iNKQ==}
296 |
297 | '@ucanto/interface@10.0.1':
298 | resolution: {integrity: sha512-+Vr/N4mLsdynV9/bqtdFiq7WsUf3265/Qx2aHJmPtXo9/QvWKthJtpe0g8U4NWkWpVfqIFvyAO2db6D9zWQfQw==}
299 |
300 | '@ucanto/principal@9.0.1':
301 | resolution: {integrity: sha512-8eAvaZHW1vyET4X90rkJv6pmW1IOdEYlZYwO3wDgTkC5m9VytBEywCvpzP57cavdYIbbPse5QS9nMEGvk87zhw==}
302 |
303 | '@ucanto/server@10.0.0':
304 | resolution: {integrity: sha512-JMDMT3tFRE0S1cdtx/Hhh7v9FizV6IS0fPrh6pcli7AzKvXVy8Xu6EQ/66Fax4AQM2tkGxNNxjj2wHM7P4CqAg==}
305 |
306 | '@ucanto/transport@9.1.1':
307 | resolution: {integrity: sha512-3CR17nEemOVaTuMZa6waWgVL4sLxSPcxYvpaNeJ6NZo1rfsqdyRXOtbVV/RcI2BtUL0Cao6JM6P9+gdghfc5ng==}
308 |
309 | '@ucanto/validator@9.0.2':
310 | resolution: {integrity: sha512-LxhRbDMIoLt9LYHq/Rz1WCEH8AtmdsBTS/it28Ij/A3W0zyoSwUpAUxBtXaKRh/gpbxdWmjxX+nVfFJYL//b4g==}
311 |
312 | '@ungap/structured-clone@1.2.0':
313 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
314 |
315 | '@web3-storage/access@18.3.1':
316 | resolution: {integrity: sha512-NMNBqCcw+mfabrpRqoDWKmWfkioTCTClvSkb0vCpTb0yA/yntkJYG70QIaGdtoHV2Kz1gk4Hj1x9th5nHIKSpA==}
317 |
318 | '@web3-storage/capabilities@13.3.1':
319 | resolution: {integrity: sha512-oiQVsSuT4sxOHrYZz05LTCSV3xfT0ae5sixhvEZZaQAwzpv4xPBI0e5ro1SVNV/8kpCzRT2bq3VY4QlN1EfK/Q==}
320 |
321 | '@web3-storage/content-claims@4.0.4':
322 | resolution: {integrity: sha512-zt5psR3SkLbPPHzGzhFXYSJEssDl/ELYbNhEez+tNZLZiagv3Vl0RSt+x3CFFgR5ovO6Zn+pLJJcMjpMiHw0Yw==}
323 |
324 | '@web3-storage/data-segment@3.2.0':
325 | resolution: {integrity: sha512-SM6eNumXzrXiQE2/J59+eEgCRZNYPxKhRoHX2QvV3/scD4qgcf4g+paWBc3UriLEY1rCboygGoPsnqYJNyZyfA==}
326 |
327 | '@web3-storage/data-segment@4.0.0':
328 | resolution: {integrity: sha512-AnNyJp3wHMa7LBzguQzm4rmXSi8vQBz4uFs+jiXnSNtLR5dAqHfhMvi9XdWonWPYvxNvT5ZhYCSF0mpDjymqKg==}
329 |
330 | '@web3-storage/did-mailto@2.1.0':
331 | resolution: {integrity: sha512-TRmfSXj1IhtX3ESurSNOylZSBKi0z/VJNoMLpof+AVRdovgZjjocpiePQTs2pfHKqHTHfJXc9AboWyK4IKTWMw==}
332 | engines: {node: '>=16.15'}
333 |
334 | '@web3-storage/filecoin-api@4.6.1':
335 | resolution: {integrity: sha512-F6SfA7DP1lol8tTEF4W4pdOqKrIqzGwM5BN4sl8iXfZigFsSKu1/cVqbJhvZGl+NVpSpOkqM6KyQFbAm1cpn+g==}
336 | engines: {node: '>=16.15'}
337 |
338 | '@web3-storage/upload-api@9.1.5':
339 | resolution: {integrity: sha512-OAPRm1pUYUnT/TpyRqxfy238H9neywcwZclQYn6ET6HxEJa76IjkcYsLIsJ4ivEyJK4E2XqImPBGHAtow8iDUw==}
340 | engines: {node: '>=16.15'}
341 |
342 | acorn-jsx@5.3.2:
343 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
344 | peerDependencies:
345 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
346 |
347 | acorn@8.11.3:
348 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
349 | engines: {node: '>=0.4.0'}
350 | hasBin: true
351 |
352 | ajv-formats@2.1.1:
353 | resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
354 | peerDependencies:
355 | ajv: ^8.0.0
356 | peerDependenciesMeta:
357 | ajv:
358 | optional: true
359 |
360 | ajv@6.12.6:
361 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
362 |
363 | ajv@8.12.0:
364 | resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
365 |
366 | ansi-regex@5.0.1:
367 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
368 | engines: {node: '>=8'}
369 |
370 | ansi-regex@6.0.1:
371 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
372 | engines: {node: '>=12'}
373 |
374 | ansi-styles@4.3.0:
375 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
376 | engines: {node: '>=8'}
377 |
378 | ansi-styles@6.2.1:
379 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
380 | engines: {node: '>=12'}
381 |
382 | any-promise@1.3.0:
383 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
384 |
385 | anymatch@3.1.3:
386 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
387 | engines: {node: '>= 8'}
388 |
389 | arg@5.0.2:
390 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
391 |
392 | argparse@2.0.1:
393 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
394 |
395 | aria-query@5.3.0:
396 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
397 |
398 | array-buffer-byte-length@1.0.1:
399 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
400 | engines: {node: '>= 0.4'}
401 |
402 | array-from-async@3.0.0:
403 | resolution: {integrity: sha512-gV8/L4y2QB5JTXL9DMdtspGyed2M3V6nMnSN+nNg8ejyUlAAbKAjRS6pfWWINjU/MuFJFMGWPazHPor7hThXQw==}
404 |
405 | array-includes@3.1.8:
406 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
407 | engines: {node: '>= 0.4'}
408 |
409 | array-union@2.1.0:
410 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
411 | engines: {node: '>=8'}
412 |
413 | array.prototype.findlast@1.2.5:
414 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
415 | engines: {node: '>= 0.4'}
416 |
417 | array.prototype.findlastindex@1.2.5:
418 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
419 | engines: {node: '>= 0.4'}
420 |
421 | array.prototype.flat@1.3.2:
422 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
423 | engines: {node: '>= 0.4'}
424 |
425 | array.prototype.flatmap@1.3.2:
426 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
427 | engines: {node: '>= 0.4'}
428 |
429 | array.prototype.toreversed@1.1.2:
430 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
431 |
432 | array.prototype.tosorted@1.1.3:
433 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
434 |
435 | arraybuffer.prototype.slice@1.0.3:
436 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
437 | engines: {node: '>= 0.4'}
438 |
439 | ast-types-flow@0.0.8:
440 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
441 |
442 | atomically@2.0.3:
443 | resolution: {integrity: sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==}
444 |
445 | available-typed-arrays@1.0.7:
446 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
447 | engines: {node: '>= 0.4'}
448 |
449 | axe-core@4.7.0:
450 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
451 | engines: {node: '>=4'}
452 |
453 | axobject-query@3.2.1:
454 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
455 |
456 | balanced-match@1.0.2:
457 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
458 |
459 | bigint-mod-arith@3.3.1:
460 | resolution: {integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==}
461 | engines: {node: '>=10.4.0'}
462 |
463 | binary-extensions@2.3.0:
464 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
465 | engines: {node: '>=8'}
466 |
467 | brace-expansion@1.1.11:
468 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
469 |
470 | brace-expansion@2.0.1:
471 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
472 |
473 | braces@3.0.2:
474 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
475 | engines: {node: '>=8'}
476 |
477 | busboy@1.6.0:
478 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
479 | engines: {node: '>=10.16.0'}
480 |
481 | call-bind@1.0.7:
482 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
483 | engines: {node: '>= 0.4'}
484 |
485 | callsites@3.1.0:
486 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
487 | engines: {node: '>=6'}
488 |
489 | camelcase-css@2.0.1:
490 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
491 | engines: {node: '>= 6'}
492 |
493 | caniuse-lite@1.0.30001612:
494 | resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==}
495 |
496 | carstream@1.1.1:
497 | resolution: {integrity: sha512-cgn3TqHo6SPsHBTfM5QgXngv6HtwgO1bKCHcdS35vBrweLcYrIG/+UboCbvnIGA0k8NtAYl/DvDdej/9pZGZxQ==}
498 |
499 | cborg@4.2.0:
500 | resolution: {integrity: sha512-q6cFW5m3KxfP/9xGI3yGLaC1l5DP6DWM9IvjiJojnIwohL5CQDl02EXViPV852mOfQo+7PJGPN01MI87vFGzyA==}
501 | hasBin: true
502 |
503 | chalk@4.1.2:
504 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
505 | engines: {node: '>=10'}
506 |
507 | chokidar@3.6.0:
508 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
509 | engines: {node: '>= 8.10.0'}
510 |
511 | client-only@0.0.1:
512 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
513 |
514 | color-convert@2.0.1:
515 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
516 | engines: {node: '>=7.0.0'}
517 |
518 | color-name@1.1.4:
519 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
520 |
521 | commander@4.1.1:
522 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
523 | engines: {node: '>= 6'}
524 |
525 | concat-map@0.0.1:
526 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
527 |
528 | conf@11.0.2:
529 | resolution: {integrity: sha512-jjyhlQ0ew/iwmtwsS2RaB6s8DBifcE2GYBEaw2SJDUY/slJJbNfY4GlDVzOs/ff8cM/Wua5CikqXgbFl5eu85A==}
530 | engines: {node: '>=14.16'}
531 |
532 | cross-spawn@7.0.3:
533 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
534 | engines: {node: '>= 8'}
535 |
536 | cssesc@3.0.0:
537 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
538 | engines: {node: '>=4'}
539 | hasBin: true
540 |
541 | csstype@3.1.3:
542 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
543 |
544 | damerau-levenshtein@1.0.8:
545 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
546 |
547 | data-view-buffer@1.0.1:
548 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
549 | engines: {node: '>= 0.4'}
550 |
551 | data-view-byte-length@1.0.1:
552 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
553 | engines: {node: '>= 0.4'}
554 |
555 | data-view-byte-offset@1.0.0:
556 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
557 | engines: {node: '>= 0.4'}
558 |
559 | debounce-fn@5.1.2:
560 | resolution: {integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==}
561 | engines: {node: '>=12'}
562 |
563 | debug@3.2.7:
564 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
565 | peerDependencies:
566 | supports-color: '*'
567 | peerDependenciesMeta:
568 | supports-color:
569 | optional: true
570 |
571 | debug@4.3.4:
572 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
573 | engines: {node: '>=6.0'}
574 | peerDependencies:
575 | supports-color: '*'
576 | peerDependenciesMeta:
577 | supports-color:
578 | optional: true
579 |
580 | deep-is@0.1.4:
581 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
582 |
583 | define-data-property@1.1.4:
584 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
585 | engines: {node: '>= 0.4'}
586 |
587 | define-properties@1.2.1:
588 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
589 | engines: {node: '>= 0.4'}
590 |
591 | dequal@2.0.3:
592 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
593 | engines: {node: '>=6'}
594 |
595 | didyoumean@1.2.2:
596 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
597 |
598 | dir-glob@3.0.1:
599 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
600 | engines: {node: '>=8'}
601 |
602 | dlv@1.1.3:
603 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
604 |
605 | doctrine@2.1.0:
606 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
607 | engines: {node: '>=0.10.0'}
608 |
609 | doctrine@3.0.0:
610 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
611 | engines: {node: '>=6.0.0'}
612 |
613 | dot-prop@7.2.0:
614 | resolution: {integrity: sha512-Ol/IPXUARn9CSbkrdV4VJo7uCy1I3VuSiWCaFSg+8BdUOzF9n3jefIpcgAydvUZbTdEBZs2vEiTiS9m61ssiDA==}
615 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
616 |
617 | eastasianwidth@0.2.0:
618 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
619 |
620 | emoji-regex@8.0.0:
621 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
622 |
623 | emoji-regex@9.2.2:
624 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
625 |
626 | enhanced-resolve@5.16.0:
627 | resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
628 | engines: {node: '>=10.13.0'}
629 |
630 | env-paths@3.0.0:
631 | resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==}
632 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
633 |
634 | es-abstract@1.23.3:
635 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
636 | engines: {node: '>= 0.4'}
637 |
638 | es-define-property@1.0.0:
639 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
640 | engines: {node: '>= 0.4'}
641 |
642 | es-errors@1.3.0:
643 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
644 | engines: {node: '>= 0.4'}
645 |
646 | es-iterator-helpers@1.0.18:
647 | resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
648 | engines: {node: '>= 0.4'}
649 |
650 | es-object-atoms@1.0.0:
651 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
652 | engines: {node: '>= 0.4'}
653 |
654 | es-set-tostringtag@2.0.3:
655 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
656 | engines: {node: '>= 0.4'}
657 |
658 | es-shim-unscopables@1.0.2:
659 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
660 |
661 | es-to-primitive@1.2.1:
662 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
663 | engines: {node: '>= 0.4'}
664 |
665 | escape-string-regexp@4.0.0:
666 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
667 | engines: {node: '>=10'}
668 |
669 | eslint-config-next@14.2.2:
670 | resolution: {integrity: sha512-12/uFc0KX+wUs7EDpOUGKMXBXZJiBVGdK5/m/QgXOCg2mQ0bQWoKSWNrCeOg7Vum6Kw1d1TW453W6xh+GbHquw==}
671 | peerDependencies:
672 | eslint: ^7.23.0 || ^8.0.0
673 | typescript: '>=3.3.1'
674 | peerDependenciesMeta:
675 | typescript:
676 | optional: true
677 |
678 | eslint-import-resolver-node@0.3.9:
679 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
680 |
681 | eslint-import-resolver-typescript@3.6.1:
682 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
683 | engines: {node: ^14.18.0 || >=16.0.0}
684 | peerDependencies:
685 | eslint: '*'
686 | eslint-plugin-import: '*'
687 |
688 | eslint-module-utils@2.8.1:
689 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
690 | engines: {node: '>=4'}
691 | peerDependencies:
692 | '@typescript-eslint/parser': '*'
693 | eslint: '*'
694 | eslint-import-resolver-node: '*'
695 | eslint-import-resolver-typescript: '*'
696 | eslint-import-resolver-webpack: '*'
697 | peerDependenciesMeta:
698 | '@typescript-eslint/parser':
699 | optional: true
700 | eslint:
701 | optional: true
702 | eslint-import-resolver-node:
703 | optional: true
704 | eslint-import-resolver-typescript:
705 | optional: true
706 | eslint-import-resolver-webpack:
707 | optional: true
708 |
709 | eslint-plugin-import@2.29.1:
710 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
711 | engines: {node: '>=4'}
712 | peerDependencies:
713 | '@typescript-eslint/parser': '*'
714 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
715 | peerDependenciesMeta:
716 | '@typescript-eslint/parser':
717 | optional: true
718 |
719 | eslint-plugin-jsx-a11y@6.8.0:
720 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
721 | engines: {node: '>=4.0'}
722 | peerDependencies:
723 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
724 |
725 | eslint-plugin-react-hooks@4.6.0:
726 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
727 | engines: {node: '>=10'}
728 | peerDependencies:
729 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
730 |
731 | eslint-plugin-react@7.34.1:
732 | resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
733 | engines: {node: '>=4'}
734 | peerDependencies:
735 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
736 |
737 | eslint-scope@7.2.2:
738 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
739 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
740 |
741 | eslint-visitor-keys@3.4.3:
742 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
743 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
744 |
745 | eslint@8.57.0:
746 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
747 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
748 | hasBin: true
749 |
750 | espree@9.6.1:
751 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
752 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
753 |
754 | esquery@1.5.0:
755 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
756 | engines: {node: '>=0.10'}
757 |
758 | esrecurse@4.3.0:
759 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
760 | engines: {node: '>=4.0'}
761 |
762 | estraverse@5.3.0:
763 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
764 | engines: {node: '>=4.0'}
765 |
766 | esutils@2.0.3:
767 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
768 | engines: {node: '>=0.10.0'}
769 |
770 | fast-deep-equal@3.1.3:
771 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
772 |
773 | fast-glob@3.3.2:
774 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
775 | engines: {node: '>=8.6.0'}
776 |
777 | fast-json-stable-stringify@2.1.0:
778 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
779 |
780 | fast-levenshtein@2.0.6:
781 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
782 |
783 | fastq@1.17.1:
784 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
785 |
786 | file-entry-cache@6.0.1:
787 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
788 | engines: {node: ^10.12.0 || >=12.0.0}
789 |
790 | fill-range@7.0.1:
791 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
792 | engines: {node: '>=8'}
793 |
794 | find-up@5.0.0:
795 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
796 | engines: {node: '>=10'}
797 |
798 | flat-cache@3.2.0:
799 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
800 | engines: {node: ^10.12.0 || >=12.0.0}
801 |
802 | flatted@3.3.1:
803 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
804 |
805 | for-each@0.3.3:
806 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
807 |
808 | foreground-child@3.1.1:
809 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
810 | engines: {node: '>=14'}
811 |
812 | fr32-sha2-256-trunc254-padded-binary-tree-multihash@3.3.0:
813 | resolution: {integrity: sha512-O11VDxPmPvbQj5eac2BJXyieNacyd+RCMhwOzXQQM/NCI25x3c32YWB4/JwgOWPCpKnNXF6lpK/j0lj7GWOnYQ==}
814 |
815 | fs.realpath@1.0.0:
816 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
817 |
818 | fsevents@2.3.3:
819 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
820 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
821 | os: [darwin]
822 |
823 | function-bind@1.1.2:
824 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
825 |
826 | function.prototype.name@1.1.6:
827 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
828 | engines: {node: '>= 0.4'}
829 |
830 | functions-have-names@1.2.3:
831 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
832 |
833 | get-intrinsic@1.2.4:
834 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
835 | engines: {node: '>= 0.4'}
836 |
837 | get-symbol-description@1.0.2:
838 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
839 | engines: {node: '>= 0.4'}
840 |
841 | get-tsconfig@4.7.3:
842 | resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
843 |
844 | glob-parent@5.1.2:
845 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
846 | engines: {node: '>= 6'}
847 |
848 | glob-parent@6.0.2:
849 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
850 | engines: {node: '>=10.13.0'}
851 |
852 | glob@10.3.10:
853 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
854 | engines: {node: '>=16 || 14 >=14.17'}
855 | hasBin: true
856 |
857 | glob@10.3.12:
858 | resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
859 | engines: {node: '>=16 || 14 >=14.17'}
860 | hasBin: true
861 |
862 | glob@7.2.3:
863 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
864 |
865 | globals@13.24.0:
866 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
867 | engines: {node: '>=8'}
868 |
869 | globalthis@1.0.3:
870 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
871 | engines: {node: '>= 0.4'}
872 |
873 | globby@11.1.0:
874 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
875 | engines: {node: '>=10'}
876 |
877 | gopd@1.0.1:
878 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
879 |
880 | graceful-fs@4.2.11:
881 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
882 |
883 | graphemer@1.4.0:
884 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
885 |
886 | has-bigints@1.0.2:
887 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
888 |
889 | has-flag@4.0.0:
890 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
891 | engines: {node: '>=8'}
892 |
893 | has-property-descriptors@1.0.2:
894 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
895 |
896 | has-proto@1.0.3:
897 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
898 | engines: {node: '>= 0.4'}
899 |
900 | has-symbols@1.0.3:
901 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
902 | engines: {node: '>= 0.4'}
903 |
904 | has-tostringtag@1.0.2:
905 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
906 | engines: {node: '>= 0.4'}
907 |
908 | hasown@2.0.2:
909 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
910 | engines: {node: '>= 0.4'}
911 |
912 | ignore@5.3.1:
913 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
914 | engines: {node: '>= 4'}
915 |
916 | import-fresh@3.3.0:
917 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
918 | engines: {node: '>=6'}
919 |
920 | imurmurhash@0.1.4:
921 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
922 | engines: {node: '>=0.8.19'}
923 |
924 | inflight@1.0.6:
925 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
926 |
927 | inherits@2.0.4:
928 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
929 |
930 | internal-slot@1.0.7:
931 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
932 | engines: {node: '>= 0.4'}
933 |
934 | is-array-buffer@3.0.4:
935 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
936 | engines: {node: '>= 0.4'}
937 |
938 | is-async-function@2.0.0:
939 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
940 | engines: {node: '>= 0.4'}
941 |
942 | is-bigint@1.0.4:
943 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
944 |
945 | is-binary-path@2.1.0:
946 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
947 | engines: {node: '>=8'}
948 |
949 | is-boolean-object@1.1.2:
950 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
951 | engines: {node: '>= 0.4'}
952 |
953 | is-callable@1.2.7:
954 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
955 | engines: {node: '>= 0.4'}
956 |
957 | is-core-module@2.13.1:
958 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
959 |
960 | is-data-view@1.0.1:
961 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
962 | engines: {node: '>= 0.4'}
963 |
964 | is-date-object@1.0.5:
965 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
966 | engines: {node: '>= 0.4'}
967 |
968 | is-extglob@2.1.1:
969 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
970 | engines: {node: '>=0.10.0'}
971 |
972 | is-finalizationregistry@1.0.2:
973 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
974 |
975 | is-fullwidth-code-point@3.0.0:
976 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
977 | engines: {node: '>=8'}
978 |
979 | is-generator-function@1.0.10:
980 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
981 | engines: {node: '>= 0.4'}
982 |
983 | is-glob@4.0.3:
984 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
985 | engines: {node: '>=0.10.0'}
986 |
987 | is-map@2.0.3:
988 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
989 | engines: {node: '>= 0.4'}
990 |
991 | is-negative-zero@2.0.3:
992 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
993 | engines: {node: '>= 0.4'}
994 |
995 | is-number-object@1.0.7:
996 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
997 | engines: {node: '>= 0.4'}
998 |
999 | is-number@7.0.0:
1000 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1001 | engines: {node: '>=0.12.0'}
1002 |
1003 | is-path-inside@3.0.3:
1004 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1005 | engines: {node: '>=8'}
1006 |
1007 | is-regex@1.1.4:
1008 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1009 | engines: {node: '>= 0.4'}
1010 |
1011 | is-set@2.0.3:
1012 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1013 | engines: {node: '>= 0.4'}
1014 |
1015 | is-shared-array-buffer@1.0.3:
1016 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1017 | engines: {node: '>= 0.4'}
1018 |
1019 | is-string@1.0.7:
1020 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1021 | engines: {node: '>= 0.4'}
1022 |
1023 | is-symbol@1.0.4:
1024 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1025 | engines: {node: '>= 0.4'}
1026 |
1027 | is-typed-array@1.1.13:
1028 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1029 | engines: {node: '>= 0.4'}
1030 |
1031 | is-weakmap@2.0.2:
1032 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1033 | engines: {node: '>= 0.4'}
1034 |
1035 | is-weakref@1.0.2:
1036 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1037 |
1038 | is-weakset@2.0.3:
1039 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1040 | engines: {node: '>= 0.4'}
1041 |
1042 | isarray@2.0.5:
1043 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1044 |
1045 | isexe@2.0.0:
1046 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1047 |
1048 | iterator.prototype@1.1.2:
1049 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
1050 |
1051 | jackspeak@2.3.6:
1052 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
1053 | engines: {node: '>=14'}
1054 |
1055 | jiti@1.21.0:
1056 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
1057 | hasBin: true
1058 |
1059 | js-tokens@4.0.0:
1060 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1061 |
1062 | js-yaml@4.1.0:
1063 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1064 | hasBin: true
1065 |
1066 | json-buffer@3.0.1:
1067 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1068 |
1069 | json-schema-traverse@0.4.1:
1070 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1071 |
1072 | json-schema-traverse@1.0.0:
1073 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
1074 |
1075 | json-schema-typed@8.0.1:
1076 | resolution: {integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==}
1077 |
1078 | json-stable-stringify-without-jsonify@1.0.1:
1079 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1080 |
1081 | json5@1.0.2:
1082 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1083 | hasBin: true
1084 |
1085 | jsx-ast-utils@3.3.5:
1086 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1087 | engines: {node: '>=4.0'}
1088 |
1089 | keyv@4.5.4:
1090 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1091 |
1092 | language-subtag-registry@0.3.22:
1093 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
1094 |
1095 | language-tags@1.0.9:
1096 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
1097 | engines: {node: '>=0.10'}
1098 |
1099 | levn@0.4.1:
1100 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1101 | engines: {node: '>= 0.8.0'}
1102 |
1103 | lilconfig@2.1.0:
1104 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1105 | engines: {node: '>=10'}
1106 |
1107 | lilconfig@3.1.1:
1108 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
1109 | engines: {node: '>=14'}
1110 |
1111 | lines-and-columns@1.2.4:
1112 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1113 |
1114 | locate-path@6.0.0:
1115 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1116 | engines: {node: '>=10'}
1117 |
1118 | lodash.merge@4.6.2:
1119 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1120 |
1121 | loose-envify@1.4.0:
1122 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1123 | hasBin: true
1124 |
1125 | lru-cache@10.2.0:
1126 | resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
1127 | engines: {node: 14 || >=16.14}
1128 |
1129 | lru-cache@6.0.0:
1130 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1131 | engines: {node: '>=10'}
1132 |
1133 | merge2@1.4.1:
1134 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1135 | engines: {node: '>= 8'}
1136 |
1137 | micromatch@4.0.5:
1138 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
1139 | engines: {node: '>=8.6'}
1140 |
1141 | mimic-fn@4.0.0:
1142 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
1143 | engines: {node: '>=12'}
1144 |
1145 | minimatch@3.1.2:
1146 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1147 |
1148 | minimatch@9.0.3:
1149 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
1150 | engines: {node: '>=16 || 14 >=14.17'}
1151 |
1152 | minimatch@9.0.4:
1153 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
1154 | engines: {node: '>=16 || 14 >=14.17'}
1155 |
1156 | minimist@1.2.8:
1157 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1158 |
1159 | minipass@7.0.4:
1160 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
1161 | engines: {node: '>=16 || 14 >=14.17'}
1162 |
1163 | ms@2.1.2:
1164 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1165 |
1166 | ms@2.1.3:
1167 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1168 |
1169 | multiformats@11.0.2:
1170 | resolution: {integrity: sha512-b5mYMkOkARIuVZCpvijFj9a6m5wMVLC7cf/jIPd5D/ARDOfLC5+IFkbgDXQgcU2goIsTD/O9NY4DI/Mt4OGvlg==}
1171 | engines: {node: '>=16.0.0', npm: '>=7.0.0'}
1172 |
1173 | multiformats@12.1.3:
1174 | resolution: {integrity: sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==}
1175 | engines: {node: '>=16.0.0', npm: '>=7.0.0'}
1176 |
1177 | multiformats@13.1.0:
1178 | resolution: {integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==}
1179 |
1180 | mz@2.7.0:
1181 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1182 |
1183 | nanoid@3.3.7:
1184 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1185 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1186 | hasBin: true
1187 |
1188 | natural-compare@1.4.0:
1189 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1190 |
1191 | next@14.2.2:
1192 | resolution: {integrity: sha512-oGwUaa2bCs47FbuxWMpOoXtBMPYpvTPgdZr3UAo+pu7Ns00z9otmYpoeV1HEiYL06AlRQQIA/ypK526KjJfaxg==}
1193 | engines: {node: '>=18.17.0'}
1194 | hasBin: true
1195 | peerDependencies:
1196 | '@opentelemetry/api': ^1.1.0
1197 | '@playwright/test': ^1.41.2
1198 | react: ^18.2.0
1199 | react-dom: ^18.2.0
1200 | sass: ^1.3.0
1201 | peerDependenciesMeta:
1202 | '@opentelemetry/api':
1203 | optional: true
1204 | '@playwright/test':
1205 | optional: true
1206 | sass:
1207 | optional: true
1208 |
1209 | normalize-path@3.0.0:
1210 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1211 | engines: {node: '>=0.10.0'}
1212 |
1213 | object-assign@4.1.1:
1214 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1215 | engines: {node: '>=0.10.0'}
1216 |
1217 | object-hash@3.0.0:
1218 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1219 | engines: {node: '>= 6'}
1220 |
1221 | object-inspect@1.13.1:
1222 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
1223 |
1224 | object-keys@1.1.1:
1225 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1226 | engines: {node: '>= 0.4'}
1227 |
1228 | object.assign@4.1.5:
1229 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1230 | engines: {node: '>= 0.4'}
1231 |
1232 | object.entries@1.1.8:
1233 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1234 | engines: {node: '>= 0.4'}
1235 |
1236 | object.fromentries@2.0.8:
1237 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1238 | engines: {node: '>= 0.4'}
1239 |
1240 | object.groupby@1.0.3:
1241 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
1242 | engines: {node: '>= 0.4'}
1243 |
1244 | object.hasown@1.1.4:
1245 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
1246 | engines: {node: '>= 0.4'}
1247 |
1248 | object.values@1.2.0:
1249 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1250 | engines: {node: '>= 0.4'}
1251 |
1252 | once@1.4.0:
1253 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1254 |
1255 | one-webcrypto@1.0.3:
1256 | resolution: {integrity: sha512-fu9ywBVBPx0gS9K0etIROTiCkvI5S1TDjFsYFb3rC1ewFxeOqsbzq7aIMBHsYfrTHBcGXJaONXXjTl8B01cW1Q==}
1257 |
1258 | one-webcrypto@https://codeload.github.com/web3-storage/one-webcrypto/tar.gz/5148cd14d5489a8ac4cd38223870e02db15a2382:
1259 | resolution: {tarball: https://codeload.github.com/web3-storage/one-webcrypto/tar.gz/5148cd14d5489a8ac4cd38223870e02db15a2382}
1260 | version: 1.0.3
1261 |
1262 | optionator@0.9.3:
1263 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
1264 | engines: {node: '>= 0.8.0'}
1265 |
1266 | p-defer@4.0.1:
1267 | resolution: {integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A==}
1268 | engines: {node: '>=12'}
1269 |
1270 | p-limit@3.1.0:
1271 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1272 | engines: {node: '>=10'}
1273 |
1274 | p-locate@5.0.0:
1275 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1276 | engines: {node: '>=10'}
1277 |
1278 | p-map@6.0.0:
1279 | resolution: {integrity: sha512-T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw==}
1280 | engines: {node: '>=16'}
1281 |
1282 | p-retry@5.1.2:
1283 | resolution: {integrity: sha512-couX95waDu98NfNZV+i/iLt+fdVxmI7CbrrdC2uDWfPdUAApyxT4wmDlyOtR5KtTDmkDO0zDScDjDou9YHhd9g==}
1284 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1285 |
1286 | parent-module@1.0.1:
1287 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1288 | engines: {node: '>=6'}
1289 |
1290 | path-exists@4.0.0:
1291 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1292 | engines: {node: '>=8'}
1293 |
1294 | path-is-absolute@1.0.1:
1295 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1296 | engines: {node: '>=0.10.0'}
1297 |
1298 | path-key@3.1.1:
1299 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1300 | engines: {node: '>=8'}
1301 |
1302 | path-parse@1.0.7:
1303 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1304 |
1305 | path-scurry@1.10.2:
1306 | resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
1307 | engines: {node: '>=16 || 14 >=14.17'}
1308 |
1309 | path-type@4.0.0:
1310 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1311 | engines: {node: '>=8'}
1312 |
1313 | picocolors@1.0.0:
1314 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
1315 |
1316 | picomatch@2.3.1:
1317 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1318 | engines: {node: '>=8.6'}
1319 |
1320 | pify@2.3.0:
1321 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1322 | engines: {node: '>=0.10.0'}
1323 |
1324 | pirates@4.0.6:
1325 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1326 | engines: {node: '>= 6'}
1327 |
1328 | possible-typed-array-names@1.0.0:
1329 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1330 | engines: {node: '>= 0.4'}
1331 |
1332 | postcss-import@15.1.0:
1333 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1334 | engines: {node: '>=14.0.0'}
1335 | peerDependencies:
1336 | postcss: ^8.0.0
1337 |
1338 | postcss-js@4.0.1:
1339 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1340 | engines: {node: ^12 || ^14 || >= 16}
1341 | peerDependencies:
1342 | postcss: ^8.4.21
1343 |
1344 | postcss-load-config@4.0.2:
1345 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1346 | engines: {node: '>= 14'}
1347 | peerDependencies:
1348 | postcss: '>=8.0.9'
1349 | ts-node: '>=9.0.0'
1350 | peerDependenciesMeta:
1351 | postcss:
1352 | optional: true
1353 | ts-node:
1354 | optional: true
1355 |
1356 | postcss-nested@6.0.1:
1357 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
1358 | engines: {node: '>=12.0'}
1359 | peerDependencies:
1360 | postcss: ^8.2.14
1361 |
1362 | postcss-selector-parser@6.0.16:
1363 | resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
1364 | engines: {node: '>=4'}
1365 |
1366 | postcss-value-parser@4.2.0:
1367 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1368 |
1369 | postcss@8.4.31:
1370 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1371 | engines: {node: ^10 || ^12 || >=14}
1372 |
1373 | postcss@8.4.38:
1374 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
1375 | engines: {node: ^10 || ^12 || >=14}
1376 |
1377 | prelude-ls@1.2.1:
1378 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1379 | engines: {node: '>= 0.8.0'}
1380 |
1381 | prop-types@15.8.1:
1382 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1383 |
1384 | punycode@2.3.1:
1385 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1386 | engines: {node: '>=6'}
1387 |
1388 | queue-microtask@1.2.3:
1389 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1390 |
1391 | react-dom@18.2.0:
1392 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
1393 | peerDependencies:
1394 | react: ^18.2.0
1395 |
1396 | react-is@16.13.1:
1397 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1398 |
1399 | react@18.2.0:
1400 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
1401 | engines: {node: '>=0.10.0'}
1402 |
1403 | read-cache@1.0.0:
1404 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1405 |
1406 | readdirp@3.6.0:
1407 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1408 | engines: {node: '>=8.10.0'}
1409 |
1410 | reflect.getprototypeof@1.0.6:
1411 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
1412 | engines: {node: '>= 0.4'}
1413 |
1414 | regenerator-runtime@0.14.1:
1415 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
1416 |
1417 | regexp.prototype.flags@1.5.2:
1418 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
1419 | engines: {node: '>= 0.4'}
1420 |
1421 | require-from-string@2.0.2:
1422 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
1423 | engines: {node: '>=0.10.0'}
1424 |
1425 | resolve-from@4.0.0:
1426 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1427 | engines: {node: '>=4'}
1428 |
1429 | resolve-pkg-maps@1.0.0:
1430 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1431 |
1432 | resolve@1.22.8:
1433 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
1434 | hasBin: true
1435 |
1436 | resolve@2.0.0-next.5:
1437 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1438 | hasBin: true
1439 |
1440 | retry@0.13.1:
1441 | resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
1442 | engines: {node: '>= 4'}
1443 |
1444 | reusify@1.0.4:
1445 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1446 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1447 |
1448 | rimraf@3.0.2:
1449 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1450 | hasBin: true
1451 |
1452 | run-parallel@1.2.0:
1453 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1454 |
1455 | safe-array-concat@1.1.2:
1456 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
1457 | engines: {node: '>=0.4'}
1458 |
1459 | safe-regex-test@1.0.3:
1460 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
1461 | engines: {node: '>= 0.4'}
1462 |
1463 | scheduler@0.23.0:
1464 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
1465 |
1466 | semver@6.3.1:
1467 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1468 | hasBin: true
1469 |
1470 | semver@7.6.0:
1471 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
1472 | engines: {node: '>=10'}
1473 | hasBin: true
1474 |
1475 | set-function-length@1.2.2:
1476 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1477 | engines: {node: '>= 0.4'}
1478 |
1479 | set-function-name@2.0.2:
1480 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1481 | engines: {node: '>= 0.4'}
1482 |
1483 | shebang-command@2.0.0:
1484 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1485 | engines: {node: '>=8'}
1486 |
1487 | shebang-regex@3.0.0:
1488 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1489 | engines: {node: '>=8'}
1490 |
1491 | side-channel@1.0.6:
1492 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
1493 | engines: {node: '>= 0.4'}
1494 |
1495 | signal-exit@4.1.0:
1496 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1497 | engines: {node: '>=14'}
1498 |
1499 | slash@3.0.0:
1500 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
1501 | engines: {node: '>=8'}
1502 |
1503 | source-map-js@1.2.0:
1504 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
1505 | engines: {node: '>=0.10.0'}
1506 |
1507 | streamsearch@1.1.0:
1508 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
1509 | engines: {node: '>=10.0.0'}
1510 |
1511 | string-width@4.2.3:
1512 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1513 | engines: {node: '>=8'}
1514 |
1515 | string-width@5.1.2:
1516 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1517 | engines: {node: '>=12'}
1518 |
1519 | string.prototype.matchall@4.0.11:
1520 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
1521 | engines: {node: '>= 0.4'}
1522 |
1523 | string.prototype.trim@1.2.9:
1524 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
1525 | engines: {node: '>= 0.4'}
1526 |
1527 | string.prototype.trimend@1.0.8:
1528 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
1529 |
1530 | string.prototype.trimstart@1.0.8:
1531 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1532 | engines: {node: '>= 0.4'}
1533 |
1534 | strip-ansi@6.0.1:
1535 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1536 | engines: {node: '>=8'}
1537 |
1538 | strip-ansi@7.1.0:
1539 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1540 | engines: {node: '>=12'}
1541 |
1542 | strip-bom@3.0.0:
1543 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1544 | engines: {node: '>=4'}
1545 |
1546 | strip-json-comments@3.1.1:
1547 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1548 | engines: {node: '>=8'}
1549 |
1550 | stubborn-fs@1.2.5:
1551 | resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
1552 |
1553 | styled-jsx@5.1.1:
1554 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
1555 | engines: {node: '>= 12.0.0'}
1556 | peerDependencies:
1557 | '@babel/core': '*'
1558 | babel-plugin-macros: '*'
1559 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
1560 | peerDependenciesMeta:
1561 | '@babel/core':
1562 | optional: true
1563 | babel-plugin-macros:
1564 | optional: true
1565 |
1566 | sucrase@3.35.0:
1567 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1568 | engines: {node: '>=16 || 14 >=14.17'}
1569 | hasBin: true
1570 |
1571 | supports-color@7.2.0:
1572 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1573 | engines: {node: '>=8'}
1574 |
1575 | supports-preserve-symlinks-flag@1.0.0:
1576 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1577 | engines: {node: '>= 0.4'}
1578 |
1579 | sync-multihash-sha2@1.0.0:
1580 | resolution: {integrity: sha512-A5gVpmtKF0ov+/XID0M0QRJqF2QxAsj3x/LlDC8yivzgoYCoWkV+XaZPfVu7Vj1T/hYzYS1tfjwboSbXjqocug==}
1581 |
1582 | tailwindcss@3.4.3:
1583 | resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
1584 | engines: {node: '>=14.0.0'}
1585 | hasBin: true
1586 |
1587 | tapable@2.2.1:
1588 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
1589 | engines: {node: '>=6'}
1590 |
1591 | text-table@0.2.0:
1592 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1593 |
1594 | thenify-all@1.6.0:
1595 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1596 | engines: {node: '>=0.8'}
1597 |
1598 | thenify@3.3.1:
1599 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1600 |
1601 | to-regex-range@5.0.1:
1602 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1603 | engines: {node: '>=8.0'}
1604 |
1605 | ts-api-utils@1.3.0:
1606 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
1607 | engines: {node: '>=16'}
1608 | peerDependencies:
1609 | typescript: '>=4.2.0'
1610 |
1611 | ts-interface-checker@0.1.13:
1612 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1613 |
1614 | tsconfig-paths@3.15.0:
1615 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
1616 |
1617 | tslib@2.6.2:
1618 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
1619 |
1620 | type-check@0.4.0:
1621 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1622 | engines: {node: '>= 0.8.0'}
1623 |
1624 | type-fest@0.20.2:
1625 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1626 | engines: {node: '>=10'}
1627 |
1628 | type-fest@2.19.0:
1629 | resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
1630 | engines: {node: '>=12.20'}
1631 |
1632 | type-fest@4.16.0:
1633 | resolution: {integrity: sha512-z7Rf5PXxIhbI6eJBTwdqe5bO02nUUmctq4WqviFSstBAWV0YNtEQRhEnZw73WJ8sZOqgFG6Jdl8gYZu7NBJZnA==}
1634 | engines: {node: '>=16'}
1635 |
1636 | typed-array-buffer@1.0.2:
1637 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
1638 | engines: {node: '>= 0.4'}
1639 |
1640 | typed-array-byte-length@1.0.1:
1641 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
1642 | engines: {node: '>= 0.4'}
1643 |
1644 | typed-array-byte-offset@1.0.2:
1645 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
1646 | engines: {node: '>= 0.4'}
1647 |
1648 | typed-array-length@1.0.6:
1649 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
1650 | engines: {node: '>= 0.4'}
1651 |
1652 | typescript@5.4.5:
1653 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
1654 | engines: {node: '>=14.17'}
1655 | hasBin: true
1656 |
1657 | uint8arraylist@2.4.8:
1658 | resolution: {integrity: sha512-vc1PlGOzglLF0eae1M8mLRTBivsvrGsdmJ5RbK3e+QRvRLOZfZhQROTwH/OfyF3+ZVUg9/8hE8bmKP2CvP9quQ==}
1659 |
1660 | uint8arrays@4.0.10:
1661 | resolution: {integrity: sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==}
1662 |
1663 | uint8arrays@5.0.3:
1664 | resolution: {integrity: sha512-6LBuKji28kHjgPJMkQ6GDaBb1lRwIhyOYq6pDGwYMoDPfImE9SkuYENVmR0yu9yGgs2clHUSY9fKDukR+AXfqQ==}
1665 |
1666 | unbox-primitive@1.0.2:
1667 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
1668 |
1669 | undici-types@5.26.5:
1670 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
1671 |
1672 | uri-js@4.4.1:
1673 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1674 |
1675 | util-deprecate@1.0.2:
1676 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1677 |
1678 | varint@6.0.0:
1679 | resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
1680 |
1681 | when-exit@2.1.2:
1682 | resolution: {integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==}
1683 |
1684 | which-boxed-primitive@1.0.2:
1685 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
1686 |
1687 | which-builtin-type@1.1.3:
1688 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
1689 | engines: {node: '>= 0.4'}
1690 |
1691 | which-collection@1.0.2:
1692 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1693 | engines: {node: '>= 0.4'}
1694 |
1695 | which-typed-array@1.1.15:
1696 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
1697 | engines: {node: '>= 0.4'}
1698 |
1699 | which@2.0.2:
1700 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1701 | engines: {node: '>= 8'}
1702 | hasBin: true
1703 |
1704 | wrap-ansi@7.0.0:
1705 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1706 | engines: {node: '>=10'}
1707 |
1708 | wrap-ansi@8.1.0:
1709 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1710 | engines: {node: '>=12'}
1711 |
1712 | wrappy@1.0.2:
1713 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1714 |
1715 | yallist@4.0.0:
1716 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
1717 |
1718 | yaml@2.4.1:
1719 | resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
1720 | engines: {node: '>= 14'}
1721 | hasBin: true
1722 |
1723 | yocto-queue@0.1.0:
1724 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1725 | engines: {node: '>=10'}
1726 |
1727 | snapshots:
1728 |
1729 | '@aashutoshrathi/word-wrap@1.2.6': {}
1730 |
1731 | '@alloc/quick-lru@5.2.0': {}
1732 |
1733 | '@babel/runtime@7.24.4':
1734 | dependencies:
1735 | regenerator-runtime: 0.14.1
1736 |
1737 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
1738 | dependencies:
1739 | eslint: 8.57.0
1740 | eslint-visitor-keys: 3.4.3
1741 |
1742 | '@eslint-community/regexpp@4.10.0': {}
1743 |
1744 | '@eslint/eslintrc@2.1.4':
1745 | dependencies:
1746 | ajv: 6.12.6
1747 | debug: 4.3.4
1748 | espree: 9.6.1
1749 | globals: 13.24.0
1750 | ignore: 5.3.1
1751 | import-fresh: 3.3.0
1752 | js-yaml: 4.1.0
1753 | minimatch: 3.1.2
1754 | strip-json-comments: 3.1.1
1755 | transitivePeerDependencies:
1756 | - supports-color
1757 |
1758 | '@eslint/js@8.57.0': {}
1759 |
1760 | '@humanwhocodes/config-array@0.11.14':
1761 | dependencies:
1762 | '@humanwhocodes/object-schema': 2.0.3
1763 | debug: 4.3.4
1764 | minimatch: 3.1.2
1765 | transitivePeerDependencies:
1766 | - supports-color
1767 |
1768 | '@humanwhocodes/module-importer@1.0.1': {}
1769 |
1770 | '@humanwhocodes/object-schema@2.0.3': {}
1771 |
1772 | '@ipld/car@5.3.0':
1773 | dependencies:
1774 | '@ipld/dag-cbor': 9.2.0
1775 | cborg: 4.2.0
1776 | multiformats: 13.1.0
1777 | varint: 6.0.0
1778 |
1779 | '@ipld/dag-cbor@9.2.0':
1780 | dependencies:
1781 | cborg: 4.2.0
1782 | multiformats: 13.1.0
1783 |
1784 | '@ipld/dag-json@10.2.0':
1785 | dependencies:
1786 | cborg: 4.2.0
1787 | multiformats: 13.1.0
1788 |
1789 | '@ipld/dag-ucan@3.4.0':
1790 | dependencies:
1791 | '@ipld/dag-cbor': 9.2.0
1792 | '@ipld/dag-json': 10.2.0
1793 | multiformats: 11.0.2
1794 |
1795 | '@isaacs/cliui@8.0.2':
1796 | dependencies:
1797 | string-width: 5.1.2
1798 | string-width-cjs: string-width@4.2.3
1799 | strip-ansi: 7.1.0
1800 | strip-ansi-cjs: strip-ansi@6.0.1
1801 | wrap-ansi: 8.1.0
1802 | wrap-ansi-cjs: wrap-ansi@7.0.0
1803 |
1804 | '@jridgewell/gen-mapping@0.3.5':
1805 | dependencies:
1806 | '@jridgewell/set-array': 1.2.1
1807 | '@jridgewell/sourcemap-codec': 1.4.15
1808 | '@jridgewell/trace-mapping': 0.3.25
1809 |
1810 | '@jridgewell/resolve-uri@3.1.2': {}
1811 |
1812 | '@jridgewell/set-array@1.2.1': {}
1813 |
1814 | '@jridgewell/sourcemap-codec@1.4.15': {}
1815 |
1816 | '@jridgewell/trace-mapping@0.3.25':
1817 | dependencies:
1818 | '@jridgewell/resolve-uri': 3.1.2
1819 | '@jridgewell/sourcemap-codec': 1.4.15
1820 |
1821 | '@next/env@14.2.2': {}
1822 |
1823 | '@next/eslint-plugin-next@14.2.2':
1824 | dependencies:
1825 | glob: 10.3.10
1826 |
1827 | '@next/swc-darwin-arm64@14.2.2':
1828 | optional: true
1829 |
1830 | '@next/swc-darwin-x64@14.2.2':
1831 | optional: true
1832 |
1833 | '@next/swc-linux-arm64-gnu@14.2.2':
1834 | optional: true
1835 |
1836 | '@next/swc-linux-arm64-musl@14.2.2':
1837 | optional: true
1838 |
1839 | '@next/swc-linux-x64-gnu@14.2.2':
1840 | optional: true
1841 |
1842 | '@next/swc-linux-x64-musl@14.2.2':
1843 | optional: true
1844 |
1845 | '@next/swc-win32-arm64-msvc@14.2.2':
1846 | optional: true
1847 |
1848 | '@next/swc-win32-ia32-msvc@14.2.2':
1849 | optional: true
1850 |
1851 | '@next/swc-win32-x64-msvc@14.2.2':
1852 | optional: true
1853 |
1854 | '@noble/curves@1.4.0':
1855 | dependencies:
1856 | '@noble/hashes': 1.4.0
1857 |
1858 | '@noble/ed25519@1.7.3': {}
1859 |
1860 | '@noble/hashes@1.4.0': {}
1861 |
1862 | '@nodelib/fs.scandir@2.1.5':
1863 | dependencies:
1864 | '@nodelib/fs.stat': 2.0.5
1865 | run-parallel: 1.2.0
1866 |
1867 | '@nodelib/fs.stat@2.0.5': {}
1868 |
1869 | '@nodelib/fs.walk@1.2.8':
1870 | dependencies:
1871 | '@nodelib/fs.scandir': 2.1.5
1872 | fastq: 1.17.1
1873 |
1874 | '@pkgjs/parseargs@0.11.0':
1875 | optional: true
1876 |
1877 | '@rushstack/eslint-patch@1.10.2': {}
1878 |
1879 | '@scure/base@1.1.6': {}
1880 |
1881 | '@scure/bip39@1.3.0':
1882 | dependencies:
1883 | '@noble/hashes': 1.4.0
1884 | '@scure/base': 1.1.6
1885 |
1886 | '@swc/counter@0.1.3': {}
1887 |
1888 | '@swc/helpers@0.5.5':
1889 | dependencies:
1890 | '@swc/counter': 0.1.3
1891 | tslib: 2.6.2
1892 |
1893 | '@types/json5@0.0.29': {}
1894 |
1895 | '@types/node@20.12.7':
1896 | dependencies:
1897 | undici-types: 5.26.5
1898 |
1899 | '@types/prop-types@15.7.12': {}
1900 |
1901 | '@types/react-dom@18.2.25':
1902 | dependencies:
1903 | '@types/react': 18.2.79
1904 |
1905 | '@types/react@18.2.79':
1906 | dependencies:
1907 | '@types/prop-types': 15.7.12
1908 | csstype: 3.1.3
1909 |
1910 | '@types/retry@0.12.1': {}
1911 |
1912 | '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5)':
1913 | dependencies:
1914 | '@typescript-eslint/scope-manager': 7.2.0
1915 | '@typescript-eslint/types': 7.2.0
1916 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.5)
1917 | '@typescript-eslint/visitor-keys': 7.2.0
1918 | debug: 4.3.4
1919 | eslint: 8.57.0
1920 | optionalDependencies:
1921 | typescript: 5.4.5
1922 | transitivePeerDependencies:
1923 | - supports-color
1924 |
1925 | '@typescript-eslint/scope-manager@7.2.0':
1926 | dependencies:
1927 | '@typescript-eslint/types': 7.2.0
1928 | '@typescript-eslint/visitor-keys': 7.2.0
1929 |
1930 | '@typescript-eslint/types@7.2.0': {}
1931 |
1932 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.5)':
1933 | dependencies:
1934 | '@typescript-eslint/types': 7.2.0
1935 | '@typescript-eslint/visitor-keys': 7.2.0
1936 | debug: 4.3.4
1937 | globby: 11.1.0
1938 | is-glob: 4.0.3
1939 | minimatch: 9.0.3
1940 | semver: 7.6.0
1941 | ts-api-utils: 1.3.0(typescript@5.4.5)
1942 | optionalDependencies:
1943 | typescript: 5.4.5
1944 | transitivePeerDependencies:
1945 | - supports-color
1946 |
1947 | '@typescript-eslint/visitor-keys@7.2.0':
1948 | dependencies:
1949 | '@typescript-eslint/types': 7.2.0
1950 | eslint-visitor-keys: 3.4.3
1951 |
1952 | '@ucanto/client@9.0.1':
1953 | dependencies:
1954 | '@ucanto/core': 10.0.1
1955 | '@ucanto/interface': 10.0.1
1956 |
1957 | '@ucanto/core@10.0.1':
1958 | dependencies:
1959 | '@ipld/car': 5.3.0
1960 | '@ipld/dag-cbor': 9.2.0
1961 | '@ipld/dag-ucan': 3.4.0
1962 | '@ucanto/interface': 10.0.1
1963 | multiformats: 11.0.2
1964 |
1965 | '@ucanto/interface@10.0.1':
1966 | dependencies:
1967 | '@ipld/dag-ucan': 3.4.0
1968 | multiformats: 11.0.2
1969 |
1970 | '@ucanto/principal@9.0.1':
1971 | dependencies:
1972 | '@ipld/dag-ucan': 3.4.0
1973 | '@noble/curves': 1.4.0
1974 | '@noble/ed25519': 1.7.3
1975 | '@noble/hashes': 1.4.0
1976 | '@ucanto/interface': 10.0.1
1977 | multiformats: 11.0.2
1978 | one-webcrypto: 1.0.3
1979 |
1980 | '@ucanto/server@10.0.0':
1981 | dependencies:
1982 | '@ucanto/core': 10.0.1
1983 | '@ucanto/interface': 10.0.1
1984 | '@ucanto/principal': 9.0.1
1985 | '@ucanto/validator': 9.0.2
1986 |
1987 | '@ucanto/transport@9.1.1':
1988 | dependencies:
1989 | '@ucanto/core': 10.0.1
1990 | '@ucanto/interface': 10.0.1
1991 |
1992 | '@ucanto/validator@9.0.2':
1993 | dependencies:
1994 | '@ipld/car': 5.3.0
1995 | '@ipld/dag-cbor': 9.2.0
1996 | '@ucanto/core': 10.0.1
1997 | '@ucanto/interface': 10.0.1
1998 | multiformats: 11.0.2
1999 |
2000 | '@ungap/structured-clone@1.2.0': {}
2001 |
2002 | '@web3-storage/access@18.3.1':
2003 | dependencies:
2004 | '@ipld/car': 5.3.0
2005 | '@ipld/dag-ucan': 3.4.0
2006 | '@scure/bip39': 1.3.0
2007 | '@ucanto/client': 9.0.1
2008 | '@ucanto/core': 10.0.1
2009 | '@ucanto/interface': 10.0.1
2010 | '@ucanto/principal': 9.0.1
2011 | '@ucanto/transport': 9.1.1
2012 | '@ucanto/validator': 9.0.2
2013 | '@web3-storage/capabilities': 13.3.1
2014 | '@web3-storage/did-mailto': 2.1.0
2015 | bigint-mod-arith: 3.3.1
2016 | conf: 11.0.2
2017 | multiformats: 12.1.3
2018 | one-webcrypto: https://codeload.github.com/web3-storage/one-webcrypto/tar.gz/5148cd14d5489a8ac4cd38223870e02db15a2382
2019 | p-defer: 4.0.1
2020 | type-fest: 4.16.0
2021 | uint8arrays: 4.0.10
2022 |
2023 | '@web3-storage/capabilities@13.3.1':
2024 | dependencies:
2025 | '@ucanto/core': 10.0.1
2026 | '@ucanto/interface': 10.0.1
2027 | '@ucanto/principal': 9.0.1
2028 | '@ucanto/transport': 9.1.1
2029 | '@ucanto/validator': 9.0.2
2030 | '@web3-storage/data-segment': 3.2.0
2031 | uint8arrays: 5.0.3
2032 |
2033 | '@web3-storage/content-claims@4.0.4':
2034 | dependencies:
2035 | '@ucanto/client': 9.0.1
2036 | '@ucanto/interface': 10.0.1
2037 | '@ucanto/server': 10.0.0
2038 | '@ucanto/transport': 9.1.1
2039 | carstream: 1.1.1
2040 | multiformats: 12.1.3
2041 |
2042 | '@web3-storage/data-segment@3.2.0':
2043 | dependencies:
2044 | '@ipld/dag-cbor': 9.2.0
2045 | multiformats: 11.0.2
2046 | sync-multihash-sha2: 1.0.0
2047 |
2048 | '@web3-storage/data-segment@4.0.0':
2049 | dependencies:
2050 | '@ipld/dag-cbor': 9.2.0
2051 | multiformats: 11.0.2
2052 | sync-multihash-sha2: 1.0.0
2053 |
2054 | '@web3-storage/did-mailto@2.1.0': {}
2055 |
2056 | '@web3-storage/filecoin-api@4.6.1':
2057 | dependencies:
2058 | '@ipld/dag-ucan': 3.4.0
2059 | '@ucanto/client': 9.0.1
2060 | '@ucanto/core': 10.0.1
2061 | '@ucanto/interface': 10.0.1
2062 | '@ucanto/server': 10.0.0
2063 | '@ucanto/transport': 9.1.1
2064 | '@web3-storage/capabilities': 13.3.1
2065 | '@web3-storage/content-claims': 4.0.4
2066 | '@web3-storage/data-segment': 4.0.0
2067 | fr32-sha2-256-trunc254-padded-binary-tree-multihash: 3.3.0
2068 | p-map: 6.0.0
2069 |
2070 | '@web3-storage/upload-api@9.1.5':
2071 | dependencies:
2072 | '@ucanto/client': 9.0.1
2073 | '@ucanto/interface': 10.0.1
2074 | '@ucanto/principal': 9.0.1
2075 | '@ucanto/server': 10.0.0
2076 | '@ucanto/transport': 9.1.1
2077 | '@ucanto/validator': 9.0.2
2078 | '@web3-storage/access': 18.3.1
2079 | '@web3-storage/capabilities': 13.3.1
2080 | '@web3-storage/content-claims': 4.0.4
2081 | '@web3-storage/did-mailto': 2.1.0
2082 | '@web3-storage/filecoin-api': 4.6.1
2083 | multiformats: 12.1.3
2084 | p-retry: 5.1.2
2085 | uint8arrays: 5.0.3
2086 |
2087 | acorn-jsx@5.3.2(acorn@8.11.3):
2088 | dependencies:
2089 | acorn: 8.11.3
2090 |
2091 | acorn@8.11.3: {}
2092 |
2093 | ajv-formats@2.1.1(ajv@8.12.0):
2094 | optionalDependencies:
2095 | ajv: 8.12.0
2096 |
2097 | ajv@6.12.6:
2098 | dependencies:
2099 | fast-deep-equal: 3.1.3
2100 | fast-json-stable-stringify: 2.1.0
2101 | json-schema-traverse: 0.4.1
2102 | uri-js: 4.4.1
2103 |
2104 | ajv@8.12.0:
2105 | dependencies:
2106 | fast-deep-equal: 3.1.3
2107 | json-schema-traverse: 1.0.0
2108 | require-from-string: 2.0.2
2109 | uri-js: 4.4.1
2110 |
2111 | ansi-regex@5.0.1: {}
2112 |
2113 | ansi-regex@6.0.1: {}
2114 |
2115 | ansi-styles@4.3.0:
2116 | dependencies:
2117 | color-convert: 2.0.1
2118 |
2119 | ansi-styles@6.2.1: {}
2120 |
2121 | any-promise@1.3.0: {}
2122 |
2123 | anymatch@3.1.3:
2124 | dependencies:
2125 | normalize-path: 3.0.0
2126 | picomatch: 2.3.1
2127 |
2128 | arg@5.0.2: {}
2129 |
2130 | argparse@2.0.1: {}
2131 |
2132 | aria-query@5.3.0:
2133 | dependencies:
2134 | dequal: 2.0.3
2135 |
2136 | array-buffer-byte-length@1.0.1:
2137 | dependencies:
2138 | call-bind: 1.0.7
2139 | is-array-buffer: 3.0.4
2140 |
2141 | array-from-async@3.0.0: {}
2142 |
2143 | array-includes@3.1.8:
2144 | dependencies:
2145 | call-bind: 1.0.7
2146 | define-properties: 1.2.1
2147 | es-abstract: 1.23.3
2148 | es-object-atoms: 1.0.0
2149 | get-intrinsic: 1.2.4
2150 | is-string: 1.0.7
2151 |
2152 | array-union@2.1.0: {}
2153 |
2154 | array.prototype.findlast@1.2.5:
2155 | dependencies:
2156 | call-bind: 1.0.7
2157 | define-properties: 1.2.1
2158 | es-abstract: 1.23.3
2159 | es-errors: 1.3.0
2160 | es-object-atoms: 1.0.0
2161 | es-shim-unscopables: 1.0.2
2162 |
2163 | array.prototype.findlastindex@1.2.5:
2164 | dependencies:
2165 | call-bind: 1.0.7
2166 | define-properties: 1.2.1
2167 | es-abstract: 1.23.3
2168 | es-errors: 1.3.0
2169 | es-object-atoms: 1.0.0
2170 | es-shim-unscopables: 1.0.2
2171 |
2172 | array.prototype.flat@1.3.2:
2173 | dependencies:
2174 | call-bind: 1.0.7
2175 | define-properties: 1.2.1
2176 | es-abstract: 1.23.3
2177 | es-shim-unscopables: 1.0.2
2178 |
2179 | array.prototype.flatmap@1.3.2:
2180 | dependencies:
2181 | call-bind: 1.0.7
2182 | define-properties: 1.2.1
2183 | es-abstract: 1.23.3
2184 | es-shim-unscopables: 1.0.2
2185 |
2186 | array.prototype.toreversed@1.1.2:
2187 | dependencies:
2188 | call-bind: 1.0.7
2189 | define-properties: 1.2.1
2190 | es-abstract: 1.23.3
2191 | es-shim-unscopables: 1.0.2
2192 |
2193 | array.prototype.tosorted@1.1.3:
2194 | dependencies:
2195 | call-bind: 1.0.7
2196 | define-properties: 1.2.1
2197 | es-abstract: 1.23.3
2198 | es-errors: 1.3.0
2199 | es-shim-unscopables: 1.0.2
2200 |
2201 | arraybuffer.prototype.slice@1.0.3:
2202 | dependencies:
2203 | array-buffer-byte-length: 1.0.1
2204 | call-bind: 1.0.7
2205 | define-properties: 1.2.1
2206 | es-abstract: 1.23.3
2207 | es-errors: 1.3.0
2208 | get-intrinsic: 1.2.4
2209 | is-array-buffer: 3.0.4
2210 | is-shared-array-buffer: 1.0.3
2211 |
2212 | ast-types-flow@0.0.8: {}
2213 |
2214 | atomically@2.0.3:
2215 | dependencies:
2216 | stubborn-fs: 1.2.5
2217 | when-exit: 2.1.2
2218 |
2219 | available-typed-arrays@1.0.7:
2220 | dependencies:
2221 | possible-typed-array-names: 1.0.0
2222 |
2223 | axe-core@4.7.0: {}
2224 |
2225 | axobject-query@3.2.1:
2226 | dependencies:
2227 | dequal: 2.0.3
2228 |
2229 | balanced-match@1.0.2: {}
2230 |
2231 | bigint-mod-arith@3.3.1: {}
2232 |
2233 | binary-extensions@2.3.0: {}
2234 |
2235 | brace-expansion@1.1.11:
2236 | dependencies:
2237 | balanced-match: 1.0.2
2238 | concat-map: 0.0.1
2239 |
2240 | brace-expansion@2.0.1:
2241 | dependencies:
2242 | balanced-match: 1.0.2
2243 |
2244 | braces@3.0.2:
2245 | dependencies:
2246 | fill-range: 7.0.1
2247 |
2248 | busboy@1.6.0:
2249 | dependencies:
2250 | streamsearch: 1.1.0
2251 |
2252 | call-bind@1.0.7:
2253 | dependencies:
2254 | es-define-property: 1.0.0
2255 | es-errors: 1.3.0
2256 | function-bind: 1.1.2
2257 | get-intrinsic: 1.2.4
2258 | set-function-length: 1.2.2
2259 |
2260 | callsites@3.1.0: {}
2261 |
2262 | camelcase-css@2.0.1: {}
2263 |
2264 | caniuse-lite@1.0.30001612: {}
2265 |
2266 | carstream@1.1.1:
2267 | dependencies:
2268 | '@ipld/dag-cbor': 9.2.0
2269 | multiformats: 12.1.3
2270 | uint8arraylist: 2.4.8
2271 |
2272 | cborg@4.2.0: {}
2273 |
2274 | chalk@4.1.2:
2275 | dependencies:
2276 | ansi-styles: 4.3.0
2277 | supports-color: 7.2.0
2278 |
2279 | chokidar@3.6.0:
2280 | dependencies:
2281 | anymatch: 3.1.3
2282 | braces: 3.0.2
2283 | glob-parent: 5.1.2
2284 | is-binary-path: 2.1.0
2285 | is-glob: 4.0.3
2286 | normalize-path: 3.0.0
2287 | readdirp: 3.6.0
2288 | optionalDependencies:
2289 | fsevents: 2.3.3
2290 |
2291 | client-only@0.0.1: {}
2292 |
2293 | color-convert@2.0.1:
2294 | dependencies:
2295 | color-name: 1.1.4
2296 |
2297 | color-name@1.1.4: {}
2298 |
2299 | commander@4.1.1: {}
2300 |
2301 | concat-map@0.0.1: {}
2302 |
2303 | conf@11.0.2:
2304 | dependencies:
2305 | ajv: 8.12.0
2306 | ajv-formats: 2.1.1(ajv@8.12.0)
2307 | atomically: 2.0.3
2308 | debounce-fn: 5.1.2
2309 | dot-prop: 7.2.0
2310 | env-paths: 3.0.0
2311 | json-schema-typed: 8.0.1
2312 | semver: 7.6.0
2313 |
2314 | cross-spawn@7.0.3:
2315 | dependencies:
2316 | path-key: 3.1.1
2317 | shebang-command: 2.0.0
2318 | which: 2.0.2
2319 |
2320 | cssesc@3.0.0: {}
2321 |
2322 | csstype@3.1.3: {}
2323 |
2324 | damerau-levenshtein@1.0.8: {}
2325 |
2326 | data-view-buffer@1.0.1:
2327 | dependencies:
2328 | call-bind: 1.0.7
2329 | es-errors: 1.3.0
2330 | is-data-view: 1.0.1
2331 |
2332 | data-view-byte-length@1.0.1:
2333 | dependencies:
2334 | call-bind: 1.0.7
2335 | es-errors: 1.3.0
2336 | is-data-view: 1.0.1
2337 |
2338 | data-view-byte-offset@1.0.0:
2339 | dependencies:
2340 | call-bind: 1.0.7
2341 | es-errors: 1.3.0
2342 | is-data-view: 1.0.1
2343 |
2344 | debounce-fn@5.1.2:
2345 | dependencies:
2346 | mimic-fn: 4.0.0
2347 |
2348 | debug@3.2.7:
2349 | dependencies:
2350 | ms: 2.1.3
2351 |
2352 | debug@4.3.4:
2353 | dependencies:
2354 | ms: 2.1.2
2355 |
2356 | deep-is@0.1.4: {}
2357 |
2358 | define-data-property@1.1.4:
2359 | dependencies:
2360 | es-define-property: 1.0.0
2361 | es-errors: 1.3.0
2362 | gopd: 1.0.1
2363 |
2364 | define-properties@1.2.1:
2365 | dependencies:
2366 | define-data-property: 1.1.4
2367 | has-property-descriptors: 1.0.2
2368 | object-keys: 1.1.1
2369 |
2370 | dequal@2.0.3: {}
2371 |
2372 | didyoumean@1.2.2: {}
2373 |
2374 | dir-glob@3.0.1:
2375 | dependencies:
2376 | path-type: 4.0.0
2377 |
2378 | dlv@1.1.3: {}
2379 |
2380 | doctrine@2.1.0:
2381 | dependencies:
2382 | esutils: 2.0.3
2383 |
2384 | doctrine@3.0.0:
2385 | dependencies:
2386 | esutils: 2.0.3
2387 |
2388 | dot-prop@7.2.0:
2389 | dependencies:
2390 | type-fest: 2.19.0
2391 |
2392 | eastasianwidth@0.2.0: {}
2393 |
2394 | emoji-regex@8.0.0: {}
2395 |
2396 | emoji-regex@9.2.2: {}
2397 |
2398 | enhanced-resolve@5.16.0:
2399 | dependencies:
2400 | graceful-fs: 4.2.11
2401 | tapable: 2.2.1
2402 |
2403 | env-paths@3.0.0: {}
2404 |
2405 | es-abstract@1.23.3:
2406 | dependencies:
2407 | array-buffer-byte-length: 1.0.1
2408 | arraybuffer.prototype.slice: 1.0.3
2409 | available-typed-arrays: 1.0.7
2410 | call-bind: 1.0.7
2411 | data-view-buffer: 1.0.1
2412 | data-view-byte-length: 1.0.1
2413 | data-view-byte-offset: 1.0.0
2414 | es-define-property: 1.0.0
2415 | es-errors: 1.3.0
2416 | es-object-atoms: 1.0.0
2417 | es-set-tostringtag: 2.0.3
2418 | es-to-primitive: 1.2.1
2419 | function.prototype.name: 1.1.6
2420 | get-intrinsic: 1.2.4
2421 | get-symbol-description: 1.0.2
2422 | globalthis: 1.0.3
2423 | gopd: 1.0.1
2424 | has-property-descriptors: 1.0.2
2425 | has-proto: 1.0.3
2426 | has-symbols: 1.0.3
2427 | hasown: 2.0.2
2428 | internal-slot: 1.0.7
2429 | is-array-buffer: 3.0.4
2430 | is-callable: 1.2.7
2431 | is-data-view: 1.0.1
2432 | is-negative-zero: 2.0.3
2433 | is-regex: 1.1.4
2434 | is-shared-array-buffer: 1.0.3
2435 | is-string: 1.0.7
2436 | is-typed-array: 1.1.13
2437 | is-weakref: 1.0.2
2438 | object-inspect: 1.13.1
2439 | object-keys: 1.1.1
2440 | object.assign: 4.1.5
2441 | regexp.prototype.flags: 1.5.2
2442 | safe-array-concat: 1.1.2
2443 | safe-regex-test: 1.0.3
2444 | string.prototype.trim: 1.2.9
2445 | string.prototype.trimend: 1.0.8
2446 | string.prototype.trimstart: 1.0.8
2447 | typed-array-buffer: 1.0.2
2448 | typed-array-byte-length: 1.0.1
2449 | typed-array-byte-offset: 1.0.2
2450 | typed-array-length: 1.0.6
2451 | unbox-primitive: 1.0.2
2452 | which-typed-array: 1.1.15
2453 |
2454 | es-define-property@1.0.0:
2455 | dependencies:
2456 | get-intrinsic: 1.2.4
2457 |
2458 | es-errors@1.3.0: {}
2459 |
2460 | es-iterator-helpers@1.0.18:
2461 | dependencies:
2462 | call-bind: 1.0.7
2463 | define-properties: 1.2.1
2464 | es-abstract: 1.23.3
2465 | es-errors: 1.3.0
2466 | es-set-tostringtag: 2.0.3
2467 | function-bind: 1.1.2
2468 | get-intrinsic: 1.2.4
2469 | globalthis: 1.0.3
2470 | has-property-descriptors: 1.0.2
2471 | has-proto: 1.0.3
2472 | has-symbols: 1.0.3
2473 | internal-slot: 1.0.7
2474 | iterator.prototype: 1.1.2
2475 | safe-array-concat: 1.1.2
2476 |
2477 | es-object-atoms@1.0.0:
2478 | dependencies:
2479 | es-errors: 1.3.0
2480 |
2481 | es-set-tostringtag@2.0.3:
2482 | dependencies:
2483 | get-intrinsic: 1.2.4
2484 | has-tostringtag: 1.0.2
2485 | hasown: 2.0.2
2486 |
2487 | es-shim-unscopables@1.0.2:
2488 | dependencies:
2489 | hasown: 2.0.2
2490 |
2491 | es-to-primitive@1.2.1:
2492 | dependencies:
2493 | is-callable: 1.2.7
2494 | is-date-object: 1.0.5
2495 | is-symbol: 1.0.4
2496 |
2497 | escape-string-regexp@4.0.0: {}
2498 |
2499 | eslint-config-next@14.2.2(eslint@8.57.0)(typescript@5.4.5):
2500 | dependencies:
2501 | '@next/eslint-plugin-next': 14.2.2
2502 | '@rushstack/eslint-patch': 1.10.2
2503 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
2504 | eslint: 8.57.0
2505 | eslint-import-resolver-node: 0.3.9
2506 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
2507 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
2508 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
2509 | eslint-plugin-react: 7.34.1(eslint@8.57.0)
2510 | eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
2511 | optionalDependencies:
2512 | typescript: 5.4.5
2513 | transitivePeerDependencies:
2514 | - eslint-import-resolver-webpack
2515 | - supports-color
2516 |
2517 | eslint-import-resolver-node@0.3.9:
2518 | dependencies:
2519 | debug: 3.2.7
2520 | is-core-module: 2.13.1
2521 | resolve: 1.22.8
2522 | transitivePeerDependencies:
2523 | - supports-color
2524 |
2525 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
2526 | dependencies:
2527 | debug: 4.3.4
2528 | enhanced-resolve: 5.16.0
2529 | eslint: 8.57.0
2530 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
2531 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
2532 | fast-glob: 3.3.2
2533 | get-tsconfig: 4.7.3
2534 | is-core-module: 2.13.1
2535 | is-glob: 4.0.3
2536 | transitivePeerDependencies:
2537 | - '@typescript-eslint/parser'
2538 | - eslint-import-resolver-node
2539 | - eslint-import-resolver-webpack
2540 | - supports-color
2541 |
2542 | eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0):
2543 | dependencies:
2544 | debug: 3.2.7
2545 | optionalDependencies:
2546 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
2547 | eslint: 8.57.0
2548 | eslint-import-resolver-node: 0.3.9
2549 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
2550 | transitivePeerDependencies:
2551 | - supports-color
2552 |
2553 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
2554 | dependencies:
2555 | array-includes: 3.1.8
2556 | array.prototype.findlastindex: 1.2.5
2557 | array.prototype.flat: 1.3.2
2558 | array.prototype.flatmap: 1.3.2
2559 | debug: 3.2.7
2560 | doctrine: 2.1.0
2561 | eslint: 8.57.0
2562 | eslint-import-resolver-node: 0.3.9
2563 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
2564 | hasown: 2.0.2
2565 | is-core-module: 2.13.1
2566 | is-glob: 4.0.3
2567 | minimatch: 3.1.2
2568 | object.fromentries: 2.0.8
2569 | object.groupby: 1.0.3
2570 | object.values: 1.2.0
2571 | semver: 6.3.1
2572 | tsconfig-paths: 3.15.0
2573 | optionalDependencies:
2574 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
2575 | transitivePeerDependencies:
2576 | - eslint-import-resolver-typescript
2577 | - eslint-import-resolver-webpack
2578 | - supports-color
2579 |
2580 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0):
2581 | dependencies:
2582 | '@babel/runtime': 7.24.4
2583 | aria-query: 5.3.0
2584 | array-includes: 3.1.8
2585 | array.prototype.flatmap: 1.3.2
2586 | ast-types-flow: 0.0.8
2587 | axe-core: 4.7.0
2588 | axobject-query: 3.2.1
2589 | damerau-levenshtein: 1.0.8
2590 | emoji-regex: 9.2.2
2591 | es-iterator-helpers: 1.0.18
2592 | eslint: 8.57.0
2593 | hasown: 2.0.2
2594 | jsx-ast-utils: 3.3.5
2595 | language-tags: 1.0.9
2596 | minimatch: 3.1.2
2597 | object.entries: 1.1.8
2598 | object.fromentries: 2.0.8
2599 |
2600 | eslint-plugin-react-hooks@4.6.0(eslint@8.57.0):
2601 | dependencies:
2602 | eslint: 8.57.0
2603 |
2604 | eslint-plugin-react@7.34.1(eslint@8.57.0):
2605 | dependencies:
2606 | array-includes: 3.1.8
2607 | array.prototype.findlast: 1.2.5
2608 | array.prototype.flatmap: 1.3.2
2609 | array.prototype.toreversed: 1.1.2
2610 | array.prototype.tosorted: 1.1.3
2611 | doctrine: 2.1.0
2612 | es-iterator-helpers: 1.0.18
2613 | eslint: 8.57.0
2614 | estraverse: 5.3.0
2615 | jsx-ast-utils: 3.3.5
2616 | minimatch: 3.1.2
2617 | object.entries: 1.1.8
2618 | object.fromentries: 2.0.8
2619 | object.hasown: 1.1.4
2620 | object.values: 1.2.0
2621 | prop-types: 15.8.1
2622 | resolve: 2.0.0-next.5
2623 | semver: 6.3.1
2624 | string.prototype.matchall: 4.0.11
2625 |
2626 | eslint-scope@7.2.2:
2627 | dependencies:
2628 | esrecurse: 4.3.0
2629 | estraverse: 5.3.0
2630 |
2631 | eslint-visitor-keys@3.4.3: {}
2632 |
2633 | eslint@8.57.0:
2634 | dependencies:
2635 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
2636 | '@eslint-community/regexpp': 4.10.0
2637 | '@eslint/eslintrc': 2.1.4
2638 | '@eslint/js': 8.57.0
2639 | '@humanwhocodes/config-array': 0.11.14
2640 | '@humanwhocodes/module-importer': 1.0.1
2641 | '@nodelib/fs.walk': 1.2.8
2642 | '@ungap/structured-clone': 1.2.0
2643 | ajv: 6.12.6
2644 | chalk: 4.1.2
2645 | cross-spawn: 7.0.3
2646 | debug: 4.3.4
2647 | doctrine: 3.0.0
2648 | escape-string-regexp: 4.0.0
2649 | eslint-scope: 7.2.2
2650 | eslint-visitor-keys: 3.4.3
2651 | espree: 9.6.1
2652 | esquery: 1.5.0
2653 | esutils: 2.0.3
2654 | fast-deep-equal: 3.1.3
2655 | file-entry-cache: 6.0.1
2656 | find-up: 5.0.0
2657 | glob-parent: 6.0.2
2658 | globals: 13.24.0
2659 | graphemer: 1.4.0
2660 | ignore: 5.3.1
2661 | imurmurhash: 0.1.4
2662 | is-glob: 4.0.3
2663 | is-path-inside: 3.0.3
2664 | js-yaml: 4.1.0
2665 | json-stable-stringify-without-jsonify: 1.0.1
2666 | levn: 0.4.1
2667 | lodash.merge: 4.6.2
2668 | minimatch: 3.1.2
2669 | natural-compare: 1.4.0
2670 | optionator: 0.9.3
2671 | strip-ansi: 6.0.1
2672 | text-table: 0.2.0
2673 | transitivePeerDependencies:
2674 | - supports-color
2675 |
2676 | espree@9.6.1:
2677 | dependencies:
2678 | acorn: 8.11.3
2679 | acorn-jsx: 5.3.2(acorn@8.11.3)
2680 | eslint-visitor-keys: 3.4.3
2681 |
2682 | esquery@1.5.0:
2683 | dependencies:
2684 | estraverse: 5.3.0
2685 |
2686 | esrecurse@4.3.0:
2687 | dependencies:
2688 | estraverse: 5.3.0
2689 |
2690 | estraverse@5.3.0: {}
2691 |
2692 | esutils@2.0.3: {}
2693 |
2694 | fast-deep-equal@3.1.3: {}
2695 |
2696 | fast-glob@3.3.2:
2697 | dependencies:
2698 | '@nodelib/fs.stat': 2.0.5
2699 | '@nodelib/fs.walk': 1.2.8
2700 | glob-parent: 5.1.2
2701 | merge2: 1.4.1
2702 | micromatch: 4.0.5
2703 |
2704 | fast-json-stable-stringify@2.1.0: {}
2705 |
2706 | fast-levenshtein@2.0.6: {}
2707 |
2708 | fastq@1.17.1:
2709 | dependencies:
2710 | reusify: 1.0.4
2711 |
2712 | file-entry-cache@6.0.1:
2713 | dependencies:
2714 | flat-cache: 3.2.0
2715 |
2716 | fill-range@7.0.1:
2717 | dependencies:
2718 | to-regex-range: 5.0.1
2719 |
2720 | find-up@5.0.0:
2721 | dependencies:
2722 | locate-path: 6.0.0
2723 | path-exists: 4.0.0
2724 |
2725 | flat-cache@3.2.0:
2726 | dependencies:
2727 | flatted: 3.3.1
2728 | keyv: 4.5.4
2729 | rimraf: 3.0.2
2730 |
2731 | flatted@3.3.1: {}
2732 |
2733 | for-each@0.3.3:
2734 | dependencies:
2735 | is-callable: 1.2.7
2736 |
2737 | foreground-child@3.1.1:
2738 | dependencies:
2739 | cross-spawn: 7.0.3
2740 | signal-exit: 4.1.0
2741 |
2742 | fr32-sha2-256-trunc254-padded-binary-tree-multihash@3.3.0: {}
2743 |
2744 | fs.realpath@1.0.0: {}
2745 |
2746 | fsevents@2.3.3:
2747 | optional: true
2748 |
2749 | function-bind@1.1.2: {}
2750 |
2751 | function.prototype.name@1.1.6:
2752 | dependencies:
2753 | call-bind: 1.0.7
2754 | define-properties: 1.2.1
2755 | es-abstract: 1.23.3
2756 | functions-have-names: 1.2.3
2757 |
2758 | functions-have-names@1.2.3: {}
2759 |
2760 | get-intrinsic@1.2.4:
2761 | dependencies:
2762 | es-errors: 1.3.0
2763 | function-bind: 1.1.2
2764 | has-proto: 1.0.3
2765 | has-symbols: 1.0.3
2766 | hasown: 2.0.2
2767 |
2768 | get-symbol-description@1.0.2:
2769 | dependencies:
2770 | call-bind: 1.0.7
2771 | es-errors: 1.3.0
2772 | get-intrinsic: 1.2.4
2773 |
2774 | get-tsconfig@4.7.3:
2775 | dependencies:
2776 | resolve-pkg-maps: 1.0.0
2777 |
2778 | glob-parent@5.1.2:
2779 | dependencies:
2780 | is-glob: 4.0.3
2781 |
2782 | glob-parent@6.0.2:
2783 | dependencies:
2784 | is-glob: 4.0.3
2785 |
2786 | glob@10.3.10:
2787 | dependencies:
2788 | foreground-child: 3.1.1
2789 | jackspeak: 2.3.6
2790 | minimatch: 9.0.4
2791 | minipass: 7.0.4
2792 | path-scurry: 1.10.2
2793 |
2794 | glob@10.3.12:
2795 | dependencies:
2796 | foreground-child: 3.1.1
2797 | jackspeak: 2.3.6
2798 | minimatch: 9.0.4
2799 | minipass: 7.0.4
2800 | path-scurry: 1.10.2
2801 |
2802 | glob@7.2.3:
2803 | dependencies:
2804 | fs.realpath: 1.0.0
2805 | inflight: 1.0.6
2806 | inherits: 2.0.4
2807 | minimatch: 3.1.2
2808 | once: 1.4.0
2809 | path-is-absolute: 1.0.1
2810 |
2811 | globals@13.24.0:
2812 | dependencies:
2813 | type-fest: 0.20.2
2814 |
2815 | globalthis@1.0.3:
2816 | dependencies:
2817 | define-properties: 1.2.1
2818 |
2819 | globby@11.1.0:
2820 | dependencies:
2821 | array-union: 2.1.0
2822 | dir-glob: 3.0.1
2823 | fast-glob: 3.3.2
2824 | ignore: 5.3.1
2825 | merge2: 1.4.1
2826 | slash: 3.0.0
2827 |
2828 | gopd@1.0.1:
2829 | dependencies:
2830 | get-intrinsic: 1.2.4
2831 |
2832 | graceful-fs@4.2.11: {}
2833 |
2834 | graphemer@1.4.0: {}
2835 |
2836 | has-bigints@1.0.2: {}
2837 |
2838 | has-flag@4.0.0: {}
2839 |
2840 | has-property-descriptors@1.0.2:
2841 | dependencies:
2842 | es-define-property: 1.0.0
2843 |
2844 | has-proto@1.0.3: {}
2845 |
2846 | has-symbols@1.0.3: {}
2847 |
2848 | has-tostringtag@1.0.2:
2849 | dependencies:
2850 | has-symbols: 1.0.3
2851 |
2852 | hasown@2.0.2:
2853 | dependencies:
2854 | function-bind: 1.1.2
2855 |
2856 | ignore@5.3.1: {}
2857 |
2858 | import-fresh@3.3.0:
2859 | dependencies:
2860 | parent-module: 1.0.1
2861 | resolve-from: 4.0.0
2862 |
2863 | imurmurhash@0.1.4: {}
2864 |
2865 | inflight@1.0.6:
2866 | dependencies:
2867 | once: 1.4.0
2868 | wrappy: 1.0.2
2869 |
2870 | inherits@2.0.4: {}
2871 |
2872 | internal-slot@1.0.7:
2873 | dependencies:
2874 | es-errors: 1.3.0
2875 | hasown: 2.0.2
2876 | side-channel: 1.0.6
2877 |
2878 | is-array-buffer@3.0.4:
2879 | dependencies:
2880 | call-bind: 1.0.7
2881 | get-intrinsic: 1.2.4
2882 |
2883 | is-async-function@2.0.0:
2884 | dependencies:
2885 | has-tostringtag: 1.0.2
2886 |
2887 | is-bigint@1.0.4:
2888 | dependencies:
2889 | has-bigints: 1.0.2
2890 |
2891 | is-binary-path@2.1.0:
2892 | dependencies:
2893 | binary-extensions: 2.3.0
2894 |
2895 | is-boolean-object@1.1.2:
2896 | dependencies:
2897 | call-bind: 1.0.7
2898 | has-tostringtag: 1.0.2
2899 |
2900 | is-callable@1.2.7: {}
2901 |
2902 | is-core-module@2.13.1:
2903 | dependencies:
2904 | hasown: 2.0.2
2905 |
2906 | is-data-view@1.0.1:
2907 | dependencies:
2908 | is-typed-array: 1.1.13
2909 |
2910 | is-date-object@1.0.5:
2911 | dependencies:
2912 | has-tostringtag: 1.0.2
2913 |
2914 | is-extglob@2.1.1: {}
2915 |
2916 | is-finalizationregistry@1.0.2:
2917 | dependencies:
2918 | call-bind: 1.0.7
2919 |
2920 | is-fullwidth-code-point@3.0.0: {}
2921 |
2922 | is-generator-function@1.0.10:
2923 | dependencies:
2924 | has-tostringtag: 1.0.2
2925 |
2926 | is-glob@4.0.3:
2927 | dependencies:
2928 | is-extglob: 2.1.1
2929 |
2930 | is-map@2.0.3: {}
2931 |
2932 | is-negative-zero@2.0.3: {}
2933 |
2934 | is-number-object@1.0.7:
2935 | dependencies:
2936 | has-tostringtag: 1.0.2
2937 |
2938 | is-number@7.0.0: {}
2939 |
2940 | is-path-inside@3.0.3: {}
2941 |
2942 | is-regex@1.1.4:
2943 | dependencies:
2944 | call-bind: 1.0.7
2945 | has-tostringtag: 1.0.2
2946 |
2947 | is-set@2.0.3: {}
2948 |
2949 | is-shared-array-buffer@1.0.3:
2950 | dependencies:
2951 | call-bind: 1.0.7
2952 |
2953 | is-string@1.0.7:
2954 | dependencies:
2955 | has-tostringtag: 1.0.2
2956 |
2957 | is-symbol@1.0.4:
2958 | dependencies:
2959 | has-symbols: 1.0.3
2960 |
2961 | is-typed-array@1.1.13:
2962 | dependencies:
2963 | which-typed-array: 1.1.15
2964 |
2965 | is-weakmap@2.0.2: {}
2966 |
2967 | is-weakref@1.0.2:
2968 | dependencies:
2969 | call-bind: 1.0.7
2970 |
2971 | is-weakset@2.0.3:
2972 | dependencies:
2973 | call-bind: 1.0.7
2974 | get-intrinsic: 1.2.4
2975 |
2976 | isarray@2.0.5: {}
2977 |
2978 | isexe@2.0.0: {}
2979 |
2980 | iterator.prototype@1.1.2:
2981 | dependencies:
2982 | define-properties: 1.2.1
2983 | get-intrinsic: 1.2.4
2984 | has-symbols: 1.0.3
2985 | reflect.getprototypeof: 1.0.6
2986 | set-function-name: 2.0.2
2987 |
2988 | jackspeak@2.3.6:
2989 | dependencies:
2990 | '@isaacs/cliui': 8.0.2
2991 | optionalDependencies:
2992 | '@pkgjs/parseargs': 0.11.0
2993 |
2994 | jiti@1.21.0: {}
2995 |
2996 | js-tokens@4.0.0: {}
2997 |
2998 | js-yaml@4.1.0:
2999 | dependencies:
3000 | argparse: 2.0.1
3001 |
3002 | json-buffer@3.0.1: {}
3003 |
3004 | json-schema-traverse@0.4.1: {}
3005 |
3006 | json-schema-traverse@1.0.0: {}
3007 |
3008 | json-schema-typed@8.0.1: {}
3009 |
3010 | json-stable-stringify-without-jsonify@1.0.1: {}
3011 |
3012 | json5@1.0.2:
3013 | dependencies:
3014 | minimist: 1.2.8
3015 |
3016 | jsx-ast-utils@3.3.5:
3017 | dependencies:
3018 | array-includes: 3.1.8
3019 | array.prototype.flat: 1.3.2
3020 | object.assign: 4.1.5
3021 | object.values: 1.2.0
3022 |
3023 | keyv@4.5.4:
3024 | dependencies:
3025 | json-buffer: 3.0.1
3026 |
3027 | language-subtag-registry@0.3.22: {}
3028 |
3029 | language-tags@1.0.9:
3030 | dependencies:
3031 | language-subtag-registry: 0.3.22
3032 |
3033 | levn@0.4.1:
3034 | dependencies:
3035 | prelude-ls: 1.2.1
3036 | type-check: 0.4.0
3037 |
3038 | lilconfig@2.1.0: {}
3039 |
3040 | lilconfig@3.1.1: {}
3041 |
3042 | lines-and-columns@1.2.4: {}
3043 |
3044 | locate-path@6.0.0:
3045 | dependencies:
3046 | p-locate: 5.0.0
3047 |
3048 | lodash.merge@4.6.2: {}
3049 |
3050 | loose-envify@1.4.0:
3051 | dependencies:
3052 | js-tokens: 4.0.0
3053 |
3054 | lru-cache@10.2.0: {}
3055 |
3056 | lru-cache@6.0.0:
3057 | dependencies:
3058 | yallist: 4.0.0
3059 |
3060 | merge2@1.4.1: {}
3061 |
3062 | micromatch@4.0.5:
3063 | dependencies:
3064 | braces: 3.0.2
3065 | picomatch: 2.3.1
3066 |
3067 | mimic-fn@4.0.0: {}
3068 |
3069 | minimatch@3.1.2:
3070 | dependencies:
3071 | brace-expansion: 1.1.11
3072 |
3073 | minimatch@9.0.3:
3074 | dependencies:
3075 | brace-expansion: 2.0.1
3076 |
3077 | minimatch@9.0.4:
3078 | dependencies:
3079 | brace-expansion: 2.0.1
3080 |
3081 | minimist@1.2.8: {}
3082 |
3083 | minipass@7.0.4: {}
3084 |
3085 | ms@2.1.2: {}
3086 |
3087 | ms@2.1.3: {}
3088 |
3089 | multiformats@11.0.2: {}
3090 |
3091 | multiformats@12.1.3: {}
3092 |
3093 | multiformats@13.1.0: {}
3094 |
3095 | mz@2.7.0:
3096 | dependencies:
3097 | any-promise: 1.3.0
3098 | object-assign: 4.1.1
3099 | thenify-all: 1.6.0
3100 |
3101 | nanoid@3.3.7: {}
3102 |
3103 | natural-compare@1.4.0: {}
3104 |
3105 | next@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
3106 | dependencies:
3107 | '@next/env': 14.2.2
3108 | '@swc/helpers': 0.5.5
3109 | busboy: 1.6.0
3110 | caniuse-lite: 1.0.30001612
3111 | graceful-fs: 4.2.11
3112 | postcss: 8.4.31
3113 | react: 18.2.0
3114 | react-dom: 18.2.0(react@18.2.0)
3115 | styled-jsx: 5.1.1(react@18.2.0)
3116 | optionalDependencies:
3117 | '@next/swc-darwin-arm64': 14.2.2
3118 | '@next/swc-darwin-x64': 14.2.2
3119 | '@next/swc-linux-arm64-gnu': 14.2.2
3120 | '@next/swc-linux-arm64-musl': 14.2.2
3121 | '@next/swc-linux-x64-gnu': 14.2.2
3122 | '@next/swc-linux-x64-musl': 14.2.2
3123 | '@next/swc-win32-arm64-msvc': 14.2.2
3124 | '@next/swc-win32-ia32-msvc': 14.2.2
3125 | '@next/swc-win32-x64-msvc': 14.2.2
3126 | transitivePeerDependencies:
3127 | - '@babel/core'
3128 | - babel-plugin-macros
3129 |
3130 | normalize-path@3.0.0: {}
3131 |
3132 | object-assign@4.1.1: {}
3133 |
3134 | object-hash@3.0.0: {}
3135 |
3136 | object-inspect@1.13.1: {}
3137 |
3138 | object-keys@1.1.1: {}
3139 |
3140 | object.assign@4.1.5:
3141 | dependencies:
3142 | call-bind: 1.0.7
3143 | define-properties: 1.2.1
3144 | has-symbols: 1.0.3
3145 | object-keys: 1.1.1
3146 |
3147 | object.entries@1.1.8:
3148 | dependencies:
3149 | call-bind: 1.0.7
3150 | define-properties: 1.2.1
3151 | es-object-atoms: 1.0.0
3152 |
3153 | object.fromentries@2.0.8:
3154 | dependencies:
3155 | call-bind: 1.0.7
3156 | define-properties: 1.2.1
3157 | es-abstract: 1.23.3
3158 | es-object-atoms: 1.0.0
3159 |
3160 | object.groupby@1.0.3:
3161 | dependencies:
3162 | call-bind: 1.0.7
3163 | define-properties: 1.2.1
3164 | es-abstract: 1.23.3
3165 |
3166 | object.hasown@1.1.4:
3167 | dependencies:
3168 | define-properties: 1.2.1
3169 | es-abstract: 1.23.3
3170 | es-object-atoms: 1.0.0
3171 |
3172 | object.values@1.2.0:
3173 | dependencies:
3174 | call-bind: 1.0.7
3175 | define-properties: 1.2.1
3176 | es-object-atoms: 1.0.0
3177 |
3178 | once@1.4.0:
3179 | dependencies:
3180 | wrappy: 1.0.2
3181 |
3182 | one-webcrypto@1.0.3: {}
3183 |
3184 | one-webcrypto@https://codeload.github.com/web3-storage/one-webcrypto/tar.gz/5148cd14d5489a8ac4cd38223870e02db15a2382: {}
3185 |
3186 | optionator@0.9.3:
3187 | dependencies:
3188 | '@aashutoshrathi/word-wrap': 1.2.6
3189 | deep-is: 0.1.4
3190 | fast-levenshtein: 2.0.6
3191 | levn: 0.4.1
3192 | prelude-ls: 1.2.1
3193 | type-check: 0.4.0
3194 |
3195 | p-defer@4.0.1: {}
3196 |
3197 | p-limit@3.1.0:
3198 | dependencies:
3199 | yocto-queue: 0.1.0
3200 |
3201 | p-locate@5.0.0:
3202 | dependencies:
3203 | p-limit: 3.1.0
3204 |
3205 | p-map@6.0.0: {}
3206 |
3207 | p-retry@5.1.2:
3208 | dependencies:
3209 | '@types/retry': 0.12.1
3210 | retry: 0.13.1
3211 |
3212 | parent-module@1.0.1:
3213 | dependencies:
3214 | callsites: 3.1.0
3215 |
3216 | path-exists@4.0.0: {}
3217 |
3218 | path-is-absolute@1.0.1: {}
3219 |
3220 | path-key@3.1.1: {}
3221 |
3222 | path-parse@1.0.7: {}
3223 |
3224 | path-scurry@1.10.2:
3225 | dependencies:
3226 | lru-cache: 10.2.0
3227 | minipass: 7.0.4
3228 |
3229 | path-type@4.0.0: {}
3230 |
3231 | picocolors@1.0.0: {}
3232 |
3233 | picomatch@2.3.1: {}
3234 |
3235 | pify@2.3.0: {}
3236 |
3237 | pirates@4.0.6: {}
3238 |
3239 | possible-typed-array-names@1.0.0: {}
3240 |
3241 | postcss-import@15.1.0(postcss@8.4.38):
3242 | dependencies:
3243 | postcss: 8.4.38
3244 | postcss-value-parser: 4.2.0
3245 | read-cache: 1.0.0
3246 | resolve: 1.22.8
3247 |
3248 | postcss-js@4.0.1(postcss@8.4.38):
3249 | dependencies:
3250 | camelcase-css: 2.0.1
3251 | postcss: 8.4.38
3252 |
3253 | postcss-load-config@4.0.2(postcss@8.4.38):
3254 | dependencies:
3255 | lilconfig: 3.1.1
3256 | yaml: 2.4.1
3257 | optionalDependencies:
3258 | postcss: 8.4.38
3259 |
3260 | postcss-nested@6.0.1(postcss@8.4.38):
3261 | dependencies:
3262 | postcss: 8.4.38
3263 | postcss-selector-parser: 6.0.16
3264 |
3265 | postcss-selector-parser@6.0.16:
3266 | dependencies:
3267 | cssesc: 3.0.0
3268 | util-deprecate: 1.0.2
3269 |
3270 | postcss-value-parser@4.2.0: {}
3271 |
3272 | postcss@8.4.31:
3273 | dependencies:
3274 | nanoid: 3.3.7
3275 | picocolors: 1.0.0
3276 | source-map-js: 1.2.0
3277 |
3278 | postcss@8.4.38:
3279 | dependencies:
3280 | nanoid: 3.3.7
3281 | picocolors: 1.0.0
3282 | source-map-js: 1.2.0
3283 |
3284 | prelude-ls@1.2.1: {}
3285 |
3286 | prop-types@15.8.1:
3287 | dependencies:
3288 | loose-envify: 1.4.0
3289 | object-assign: 4.1.1
3290 | react-is: 16.13.1
3291 |
3292 | punycode@2.3.1: {}
3293 |
3294 | queue-microtask@1.2.3: {}
3295 |
3296 | react-dom@18.2.0(react@18.2.0):
3297 | dependencies:
3298 | loose-envify: 1.4.0
3299 | react: 18.2.0
3300 | scheduler: 0.23.0
3301 |
3302 | react-is@16.13.1: {}
3303 |
3304 | react@18.2.0:
3305 | dependencies:
3306 | loose-envify: 1.4.0
3307 |
3308 | read-cache@1.0.0:
3309 | dependencies:
3310 | pify: 2.3.0
3311 |
3312 | readdirp@3.6.0:
3313 | dependencies:
3314 | picomatch: 2.3.1
3315 |
3316 | reflect.getprototypeof@1.0.6:
3317 | dependencies:
3318 | call-bind: 1.0.7
3319 | define-properties: 1.2.1
3320 | es-abstract: 1.23.3
3321 | es-errors: 1.3.0
3322 | get-intrinsic: 1.2.4
3323 | globalthis: 1.0.3
3324 | which-builtin-type: 1.1.3
3325 |
3326 | regenerator-runtime@0.14.1: {}
3327 |
3328 | regexp.prototype.flags@1.5.2:
3329 | dependencies:
3330 | call-bind: 1.0.7
3331 | define-properties: 1.2.1
3332 | es-errors: 1.3.0
3333 | set-function-name: 2.0.2
3334 |
3335 | require-from-string@2.0.2: {}
3336 |
3337 | resolve-from@4.0.0: {}
3338 |
3339 | resolve-pkg-maps@1.0.0: {}
3340 |
3341 | resolve@1.22.8:
3342 | dependencies:
3343 | is-core-module: 2.13.1
3344 | path-parse: 1.0.7
3345 | supports-preserve-symlinks-flag: 1.0.0
3346 |
3347 | resolve@2.0.0-next.5:
3348 | dependencies:
3349 | is-core-module: 2.13.1
3350 | path-parse: 1.0.7
3351 | supports-preserve-symlinks-flag: 1.0.0
3352 |
3353 | retry@0.13.1: {}
3354 |
3355 | reusify@1.0.4: {}
3356 |
3357 | rimraf@3.0.2:
3358 | dependencies:
3359 | glob: 7.2.3
3360 |
3361 | run-parallel@1.2.0:
3362 | dependencies:
3363 | queue-microtask: 1.2.3
3364 |
3365 | safe-array-concat@1.1.2:
3366 | dependencies:
3367 | call-bind: 1.0.7
3368 | get-intrinsic: 1.2.4
3369 | has-symbols: 1.0.3
3370 | isarray: 2.0.5
3371 |
3372 | safe-regex-test@1.0.3:
3373 | dependencies:
3374 | call-bind: 1.0.7
3375 | es-errors: 1.3.0
3376 | is-regex: 1.1.4
3377 |
3378 | scheduler@0.23.0:
3379 | dependencies:
3380 | loose-envify: 1.4.0
3381 |
3382 | semver@6.3.1: {}
3383 |
3384 | semver@7.6.0:
3385 | dependencies:
3386 | lru-cache: 6.0.0
3387 |
3388 | set-function-length@1.2.2:
3389 | dependencies:
3390 | define-data-property: 1.1.4
3391 | es-errors: 1.3.0
3392 | function-bind: 1.1.2
3393 | get-intrinsic: 1.2.4
3394 | gopd: 1.0.1
3395 | has-property-descriptors: 1.0.2
3396 |
3397 | set-function-name@2.0.2:
3398 | dependencies:
3399 | define-data-property: 1.1.4
3400 | es-errors: 1.3.0
3401 | functions-have-names: 1.2.3
3402 | has-property-descriptors: 1.0.2
3403 |
3404 | shebang-command@2.0.0:
3405 | dependencies:
3406 | shebang-regex: 3.0.0
3407 |
3408 | shebang-regex@3.0.0: {}
3409 |
3410 | side-channel@1.0.6:
3411 | dependencies:
3412 | call-bind: 1.0.7
3413 | es-errors: 1.3.0
3414 | get-intrinsic: 1.2.4
3415 | object-inspect: 1.13.1
3416 |
3417 | signal-exit@4.1.0: {}
3418 |
3419 | slash@3.0.0: {}
3420 |
3421 | source-map-js@1.2.0: {}
3422 |
3423 | streamsearch@1.1.0: {}
3424 |
3425 | string-width@4.2.3:
3426 | dependencies:
3427 | emoji-regex: 8.0.0
3428 | is-fullwidth-code-point: 3.0.0
3429 | strip-ansi: 6.0.1
3430 |
3431 | string-width@5.1.2:
3432 | dependencies:
3433 | eastasianwidth: 0.2.0
3434 | emoji-regex: 9.2.2
3435 | strip-ansi: 7.1.0
3436 |
3437 | string.prototype.matchall@4.0.11:
3438 | dependencies:
3439 | call-bind: 1.0.7
3440 | define-properties: 1.2.1
3441 | es-abstract: 1.23.3
3442 | es-errors: 1.3.0
3443 | es-object-atoms: 1.0.0
3444 | get-intrinsic: 1.2.4
3445 | gopd: 1.0.1
3446 | has-symbols: 1.0.3
3447 | internal-slot: 1.0.7
3448 | regexp.prototype.flags: 1.5.2
3449 | set-function-name: 2.0.2
3450 | side-channel: 1.0.6
3451 |
3452 | string.prototype.trim@1.2.9:
3453 | dependencies:
3454 | call-bind: 1.0.7
3455 | define-properties: 1.2.1
3456 | es-abstract: 1.23.3
3457 | es-object-atoms: 1.0.0
3458 |
3459 | string.prototype.trimend@1.0.8:
3460 | dependencies:
3461 | call-bind: 1.0.7
3462 | define-properties: 1.2.1
3463 | es-object-atoms: 1.0.0
3464 |
3465 | string.prototype.trimstart@1.0.8:
3466 | dependencies:
3467 | call-bind: 1.0.7
3468 | define-properties: 1.2.1
3469 | es-object-atoms: 1.0.0
3470 |
3471 | strip-ansi@6.0.1:
3472 | dependencies:
3473 | ansi-regex: 5.0.1
3474 |
3475 | strip-ansi@7.1.0:
3476 | dependencies:
3477 | ansi-regex: 6.0.1
3478 |
3479 | strip-bom@3.0.0: {}
3480 |
3481 | strip-json-comments@3.1.1: {}
3482 |
3483 | stubborn-fs@1.2.5: {}
3484 |
3485 | styled-jsx@5.1.1(react@18.2.0):
3486 | dependencies:
3487 | client-only: 0.0.1
3488 | react: 18.2.0
3489 |
3490 | sucrase@3.35.0:
3491 | dependencies:
3492 | '@jridgewell/gen-mapping': 0.3.5
3493 | commander: 4.1.1
3494 | glob: 10.3.12
3495 | lines-and-columns: 1.2.4
3496 | mz: 2.7.0
3497 | pirates: 4.0.6
3498 | ts-interface-checker: 0.1.13
3499 |
3500 | supports-color@7.2.0:
3501 | dependencies:
3502 | has-flag: 4.0.0
3503 |
3504 | supports-preserve-symlinks-flag@1.0.0: {}
3505 |
3506 | sync-multihash-sha2@1.0.0:
3507 | dependencies:
3508 | '@noble/hashes': 1.4.0
3509 |
3510 | tailwindcss@3.4.3:
3511 | dependencies:
3512 | '@alloc/quick-lru': 5.2.0
3513 | arg: 5.0.2
3514 | chokidar: 3.6.0
3515 | didyoumean: 1.2.2
3516 | dlv: 1.1.3
3517 | fast-glob: 3.3.2
3518 | glob-parent: 6.0.2
3519 | is-glob: 4.0.3
3520 | jiti: 1.21.0
3521 | lilconfig: 2.1.0
3522 | micromatch: 4.0.5
3523 | normalize-path: 3.0.0
3524 | object-hash: 3.0.0
3525 | picocolors: 1.0.0
3526 | postcss: 8.4.38
3527 | postcss-import: 15.1.0(postcss@8.4.38)
3528 | postcss-js: 4.0.1(postcss@8.4.38)
3529 | postcss-load-config: 4.0.2(postcss@8.4.38)
3530 | postcss-nested: 6.0.1(postcss@8.4.38)
3531 | postcss-selector-parser: 6.0.16
3532 | resolve: 1.22.8
3533 | sucrase: 3.35.0
3534 | transitivePeerDependencies:
3535 | - ts-node
3536 |
3537 | tapable@2.2.1: {}
3538 |
3539 | text-table@0.2.0: {}
3540 |
3541 | thenify-all@1.6.0:
3542 | dependencies:
3543 | thenify: 3.3.1
3544 |
3545 | thenify@3.3.1:
3546 | dependencies:
3547 | any-promise: 1.3.0
3548 |
3549 | to-regex-range@5.0.1:
3550 | dependencies:
3551 | is-number: 7.0.0
3552 |
3553 | ts-api-utils@1.3.0(typescript@5.4.5):
3554 | dependencies:
3555 | typescript: 5.4.5
3556 |
3557 | ts-interface-checker@0.1.13: {}
3558 |
3559 | tsconfig-paths@3.15.0:
3560 | dependencies:
3561 | '@types/json5': 0.0.29
3562 | json5: 1.0.2
3563 | minimist: 1.2.8
3564 | strip-bom: 3.0.0
3565 |
3566 | tslib@2.6.2: {}
3567 |
3568 | type-check@0.4.0:
3569 | dependencies:
3570 | prelude-ls: 1.2.1
3571 |
3572 | type-fest@0.20.2: {}
3573 |
3574 | type-fest@2.19.0: {}
3575 |
3576 | type-fest@4.16.0: {}
3577 |
3578 | typed-array-buffer@1.0.2:
3579 | dependencies:
3580 | call-bind: 1.0.7
3581 | es-errors: 1.3.0
3582 | is-typed-array: 1.1.13
3583 |
3584 | typed-array-byte-length@1.0.1:
3585 | dependencies:
3586 | call-bind: 1.0.7
3587 | for-each: 0.3.3
3588 | gopd: 1.0.1
3589 | has-proto: 1.0.3
3590 | is-typed-array: 1.1.13
3591 |
3592 | typed-array-byte-offset@1.0.2:
3593 | dependencies:
3594 | available-typed-arrays: 1.0.7
3595 | call-bind: 1.0.7
3596 | for-each: 0.3.3
3597 | gopd: 1.0.1
3598 | has-proto: 1.0.3
3599 | is-typed-array: 1.1.13
3600 |
3601 | typed-array-length@1.0.6:
3602 | dependencies:
3603 | call-bind: 1.0.7
3604 | for-each: 0.3.3
3605 | gopd: 1.0.1
3606 | has-proto: 1.0.3
3607 | is-typed-array: 1.1.13
3608 | possible-typed-array-names: 1.0.0
3609 |
3610 | typescript@5.4.5: {}
3611 |
3612 | uint8arraylist@2.4.8:
3613 | dependencies:
3614 | uint8arrays: 5.0.3
3615 |
3616 | uint8arrays@4.0.10:
3617 | dependencies:
3618 | multiformats: 12.1.3
3619 |
3620 | uint8arrays@5.0.3:
3621 | dependencies:
3622 | multiformats: 13.1.0
3623 |
3624 | unbox-primitive@1.0.2:
3625 | dependencies:
3626 | call-bind: 1.0.7
3627 | has-bigints: 1.0.2
3628 | has-symbols: 1.0.3
3629 | which-boxed-primitive: 1.0.2
3630 |
3631 | undici-types@5.26.5: {}
3632 |
3633 | uri-js@4.4.1:
3634 | dependencies:
3635 | punycode: 2.3.1
3636 |
3637 | util-deprecate@1.0.2: {}
3638 |
3639 | varint@6.0.0: {}
3640 |
3641 | when-exit@2.1.2: {}
3642 |
3643 | which-boxed-primitive@1.0.2:
3644 | dependencies:
3645 | is-bigint: 1.0.4
3646 | is-boolean-object: 1.1.2
3647 | is-number-object: 1.0.7
3648 | is-string: 1.0.7
3649 | is-symbol: 1.0.4
3650 |
3651 | which-builtin-type@1.1.3:
3652 | dependencies:
3653 | function.prototype.name: 1.1.6
3654 | has-tostringtag: 1.0.2
3655 | is-async-function: 2.0.0
3656 | is-date-object: 1.0.5
3657 | is-finalizationregistry: 1.0.2
3658 | is-generator-function: 1.0.10
3659 | is-regex: 1.1.4
3660 | is-weakref: 1.0.2
3661 | isarray: 2.0.5
3662 | which-boxed-primitive: 1.0.2
3663 | which-collection: 1.0.2
3664 | which-typed-array: 1.1.15
3665 |
3666 | which-collection@1.0.2:
3667 | dependencies:
3668 | is-map: 2.0.3
3669 | is-set: 2.0.3
3670 | is-weakmap: 2.0.2
3671 | is-weakset: 2.0.3
3672 |
3673 | which-typed-array@1.1.15:
3674 | dependencies:
3675 | available-typed-arrays: 1.0.7
3676 | call-bind: 1.0.7
3677 | for-each: 0.3.3
3678 | gopd: 1.0.1
3679 | has-tostringtag: 1.0.2
3680 |
3681 | which@2.0.2:
3682 | dependencies:
3683 | isexe: 2.0.0
3684 |
3685 | wrap-ansi@7.0.0:
3686 | dependencies:
3687 | ansi-styles: 4.3.0
3688 | string-width: 4.2.3
3689 | strip-ansi: 6.0.1
3690 |
3691 | wrap-ansi@8.1.0:
3692 | dependencies:
3693 | ansi-styles: 6.2.1
3694 | string-width: 5.1.2
3695 | strip-ansi: 7.1.0
3696 |
3697 | wrappy@1.0.2: {}
3698 |
3699 | yallist@4.0.0: {}
3700 |
3701 | yaml@2.4.1: {}
3702 |
3703 | yocto-queue@0.1.0: {}
3704 |
--------------------------------------------------------------------------------