├── .env.example
├── .eslintrc.json
├── .gitignore
├── .prettierrc
├── README.md
├── components
├── layout.tsx
└── ui
│ └── LoadingDots.tsx
├── config
└── pinecone.ts
├── next.config.js
├── package.json
├── pages
├── _app.tsx
├── _document.tsx
├── api
│ └── chat.ts
└── index.tsx
├── pnpm-lock.yaml
├── postcss.config.cjs
├── public
└── favicon.ico
├── scripts
└── ingest-data.ts
├── styles
├── base.css
├── chrome-bug.css
└── loading-dots.module.css
├── tailwind.config.cjs
├── tsconfig.json
├── types
└── chat.ts
├── utils
├── helpers.ts
├── openai-client.ts
└── pinecone-client.ts
└── visual-image
└── notion-chatgpt-langchain-diagram.png
/.env.example:
--------------------------------------------------------------------------------
1 | OPENAI_API_KEY=
2 |
3 | PINECONE_API_KEY=
4 | PINECONE_ENVIRONMENT=
5 |
6 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/.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 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 | .env
31 |
32 | # vercel
33 | .vercel
34 |
35 | # typescript
36 | *.tsbuildinfo
37 | next-env.d.ts
38 |
39 | #Obsidian_Notes
40 | /Obsidian_Notes
41 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "all",
3 | "singleQuote": true,
4 | "printWidth": 80,
5 | "tabWidth": 2
6 | }
7 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Demo
2 |
3 | https://user-images.githubusercontent.com/72312238/229364024-038462e7-9a6a-4912-a2ed-86399fb43da4.mov
4 |
5 |
6 | ## 🚨 DISCLAIMER
7 |
8 | This project is inspired by [Notion Chat Langchain](https://github.com/mayooear/notion-chat-langchain) [Mayo](https://twitter.com/mayowaoshin).
9 |
10 | ## A ChatBot for Obsidian Notes
11 |
12 | This repo uses vector embedding and turns your Obsidian notes into a chatbot.
13 |
14 | ## Development
15 |
16 | 1. Clone the repo
17 | 2. Install packages
18 |
19 | ```
20 | pnpm install
21 | ```
22 |
23 | 3. Set up your `.env` file
24 |
25 | - Copy `.env.example` into `.env`
26 | Your `.env` file should look like this:
27 |
28 | ```
29 | OPENAI_API_KEY=
30 |
31 | PINECONE_API_KEY=
32 | PINECONE_ENVIRONMENT=
33 |
34 | ```
35 |
36 | - Visit [openai](https://help.openai.com/en/articles/4936850-where-do-i-find-my-secret-api-key) and [pinecone](https://www.pinecone.io/) to retrieve API keys and insert into your `.env` file.
37 |
38 | 4. In the `config` folder, go into `pinecone-index.ts` and replace `PINECONE_INDEX_NAME` with the index name in your pinecone dashboard.
39 |
40 | ## 🧑 Instructions for ingesting your own dataset
41 |
42 | Create an Obsidian_Notes folder in root project and copy and paste your .md Obsidian notes into it.
43 |
44 | ## Ingest data
45 |
46 | Now we need to `ingest` your docs. In **very** simple terms, ingesting is the process of converting your docs into numbers (embedding) that can be easily stored and analyzed for similarity searches.
47 |
48 | ```bash
49 | npm run ingest
50 |
51 | ```
52 |
53 | ## Running the app
54 |
55 | Run your local dev environment `npm run dev`.
56 |
57 | Use the search bar to ask a question about your docs.
58 |
59 | Simple.
60 |
61 | ## Deployment
62 |
63 | You can deploy this app to the cloud with [Vercel](https://vercel.com) ([Documentation](https://nextjs.org/docs/deployment)).
64 |
65 | ## Credit
66 |
67 | This repo is inspired by [Notion Chat Langchain](https://github.com/mayooear/notion-chat-langchain) and [notion-qa](https://github.com/hwchase17/notion-qa).
68 |
--------------------------------------------------------------------------------
/components/layout.tsx:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 |
3 | const navigation = {
4 | social: [
5 | {
6 | name: 'Twitter',
7 | href: 'https://twitter.com/josh_m_may',
8 | icon: (props: React.SVGProps) => (
9 |
12 | ),
13 | },
14 | ],
15 | };
16 |
17 | interface LayoutProps {
18 | children?: React.ReactNode;
19 | }
20 |
21 | export default function Layout({ children }: LayoutProps) {
22 | return (
23 |
24 | {/* Navbar */}
25 |
26 |
27 |
28 |
29 |
30 |
34 | Journal GPT
35 |
36 |
37 |
38 |
50 |
51 |
52 |
53 | {/* Close - Navbar */}
54 |
55 |
56 |
57 | {children}
58 |
59 |
60 |
61 | );
62 | }
63 |
--------------------------------------------------------------------------------
/components/ui/LoadingDots.tsx:
--------------------------------------------------------------------------------
1 | import styles from '../styles/loading-dots.module.css';
2 |
3 | const LoadingDots = ({
4 | color = '#000',
5 | style = 'small',
6 | }: {
7 | color: string;
8 | style: string;
9 | }) => {
10 | return (
11 |
12 |
13 |
14 |
15 |
16 | );
17 | };
18 |
19 | export default LoadingDots;
20 |
21 | LoadingDots.defaultProps = {
22 | style: 'small',
23 | };
24 |
--------------------------------------------------------------------------------
/config/pinecone.ts:
--------------------------------------------------------------------------------
1 | const PINECONE_INDEX_NAME = 'daily';
2 |
3 | const PINECONE_NAME_SPACE = 'obsidian-daily-notes'; //namespace is optional for your vectors
4 |
5 | export { PINECONE_INDEX_NAME, PINECONE_NAME_SPACE };
6 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | swcMinify: true,
5 | webpack(config) {
6 | config.experiments = { ...config.experiments, topLevelAwait: true };
7 | return config;
8 | },
9 | };
10 |
11 | export default nextConfig;
12 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "notion-chatgpt-langchain",
3 | "version": "0.1.0",
4 | "private": true,
5 | "license": "MIT",
6 | "author": "Mayooear",
7 | "type": "module",
8 | "scripts": {
9 | "dev": "next dev",
10 | "build": "next build",
11 | "start": "next start",
12 | "type-check": "tsc --noEmit",
13 | "lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx)\"",
14 | "format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
15 | "ingest": "tsx -r dotenv/config scripts/ingest-data.ts"
16 | },
17 | "dependencies": {
18 | "@pinecone-database/pinecone": "0.0.8",
19 | "@types/glob": "^8.1.0",
20 | "dotenv": "^16.0.3",
21 | "glob": "^9.2.1",
22 | "langchain": "^0.0.22",
23 | "next": "13.2.3",
24 | "react": "18.2.0",
25 | "react-dom": "18.2.0"
26 | },
27 | "devDependencies": {
28 | "@types/node": "^18.14.6",
29 | "@types/react": "^18.0.28",
30 | "@types/react-dom": "^18.0.11",
31 | "@typescript-eslint/eslint-plugin": "^5.54.0",
32 | "@typescript-eslint/parser": "^5.54.0",
33 | "autoprefixer": "^10.4.13",
34 | "eslint": "8.35.0",
35 | "eslint-config-next": "13.2.3",
36 | "postcss": "^8.4.21",
37 | "prettier": "^2.8.4",
38 | "tailwindcss": "^3.2.7",
39 | "tsx": "^3.12.3",
40 | "typescript": "^4.9.5"
41 | },
42 | "keywords": [
43 | "starter",
44 | "notion",
45 | "typescript",
46 | "nextjs",
47 | "langchain",
48 | "openai"
49 | ]
50 | }
51 |
--------------------------------------------------------------------------------
/pages/_app.tsx:
--------------------------------------------------------------------------------
1 | import '@/styles/base.css';
2 | import type { AppProps } from 'next/app';
3 | import { Inter } from 'next/font/google';
4 |
5 | const inter = Inter({
6 | variable: '--font-inter',
7 | subsets: ['latin'],
8 | });
9 |
10 | function MyApp({ Component, pageProps }: AppProps) {
11 | return (
12 | <>
13 |
14 |
15 |
16 | >
17 | );
18 | }
19 |
20 | export default MyApp;
21 |
--------------------------------------------------------------------------------
/pages/_document.tsx:
--------------------------------------------------------------------------------
1 | import { Html, Head, Main, NextScript } from "next/document";
2 |
3 | export default function Document() {
4 | return (
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | );
13 | }
14 |
--------------------------------------------------------------------------------
/pages/api/chat.ts:
--------------------------------------------------------------------------------
1 | import type { NextApiRequest, NextApiResponse } from 'next';
2 | import { VectorDBQAChain } from 'langchain/chains';
3 | import { OpenAIEmbeddings } from 'langchain/embeddings';
4 | import { PineconeStore } from 'langchain/vectorstores';
5 | import { openai } from '@/utils/openai-client';
6 | import { pinecone } from '@/utils/pinecone-client';
7 | import { PINECONE_INDEX_NAME, PINECONE_NAME_SPACE } from '@/config/pinecone';
8 |
9 | export default async function handler(
10 | req: NextApiRequest,
11 | res: NextApiResponse,
12 | ) {
13 | const { question } = req.body;
14 |
15 | if (!question) {
16 | return res.status(400).json({ message: 'No question in the request' });
17 | }
18 |
19 | try {
20 | // OpenAI recommends replacing newlines with spaces for best results
21 | const sanitizedQuestion = question.trim().replaceAll('\n', ' ');
22 |
23 | const index = pinecone.Index(PINECONE_INDEX_NAME);
24 | /* create vectorstore*/
25 | const vectorStore = await PineconeStore.fromExistingIndex(
26 | index,
27 | new OpenAIEmbeddings({}),
28 | 'text',
29 | PINECONE_NAME_SPACE, //optional
30 | );
31 |
32 | const model = openai;
33 | // create the chain
34 | const chain = VectorDBQAChain.fromLLM(model, vectorStore);
35 |
36 | //Ask a question
37 | const response = await chain.call({
38 | query: sanitizedQuestion,
39 | });
40 |
41 | console.log('response', response);
42 |
43 | res.status(200).json(response);
44 | } catch (error: any) {
45 | console.log('error', error);
46 | res.status(500).json({ error: error?.message || 'Unknown error.' });
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import { useRef, useState, useEffect } from 'react';
2 | import Layout from '@/components/layout';
3 |
4 | export default function Home() {
5 | const [query, setQuery] = useState('');
6 | const [loading, setLoading] = useState(false);
7 | const [answer, setAnswer] = useState('');
8 |
9 | const inputRef = useRef(null);
10 |
11 | useEffect(() => {
12 | inputRef.current?.focus();
13 | }, []);
14 |
15 | async function handleSearch() {
16 | if (!query) {
17 | alert('Please input a question');
18 | return;
19 | }
20 |
21 | setAnswer('');
22 | setLoading(true);
23 |
24 | const question = query.trim();
25 |
26 | try {
27 | const response = await fetch('/api/chat', {
28 | method: 'POST',
29 | headers: {
30 | 'Content-Type': 'application/json',
31 | },
32 | body: JSON.stringify({
33 | question,
34 | }),
35 | });
36 |
37 | if (!response.ok) {
38 | setLoading(false);
39 | throw new Error(response.statusText);
40 | }
41 |
42 | const answer = await response.json();
43 |
44 | if (answer.text) {
45 | setAnswer(answer.text);
46 | }
47 | setLoading(false);
48 | } catch (error) {
49 | setLoading(false);
50 | console.log('error', error);
51 | }
52 | }
53 |
54 | const handleEnter = (e: any) => {
55 | if (e.key === 'Enter' && query) {
56 | handleSearch();
57 | } else {
58 | return;
59 | }
60 | };
61 |
62 | const listItems: string[] = ['Item 1', 'Item 2', 'Item 3'];
63 |
64 | return (
65 | <>
66 |
67 |
68 |
69 |
70 | Turn Your Obsidian Notes into a Chatbot 🙌
71 |
72 |
73 |
74 | setQuery(e.target.value)}
81 | onKeyDown={handleEnter}
82 | />
83 |
89 |
90 | {loading && (
91 |
92 | <>
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 | >
101 |
102 | )}
103 | {!loading && answer.length > 0 && (
104 | <>
105 |
106 |
107 | Answer
108 |
109 |
110 | {answer}
111 |
112 |
113 | >
114 | )}
115 |
116 |
117 |
118 | >
119 | );
120 | }
121 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | dependencies:
4 | '@pinecone-database/pinecone':
5 | specifier: 0.0.8
6 | version: 0.0.8
7 | '@types/glob':
8 | specifier: ^8.1.0
9 | version: 8.1.0
10 | dotenv:
11 | specifier: ^16.0.3
12 | version: 16.0.3
13 | glob:
14 | specifier: ^9.2.1
15 | version: 9.2.1
16 | langchain:
17 | specifier: ^0.0.22
18 | version: 0.0.22(@pinecone-database/pinecone@0.0.8)
19 | next:
20 | specifier: 13.2.3
21 | version: 13.2.3(react-dom@18.2.0)(react@18.2.0)
22 | react:
23 | specifier: 18.2.0
24 | version: 18.2.0
25 | react-dom:
26 | specifier: 18.2.0
27 | version: 18.2.0(react@18.2.0)
28 |
29 | devDependencies:
30 | '@types/node':
31 | specifier: ^18.14.6
32 | version: 18.14.6
33 | '@types/react':
34 | specifier: ^18.0.28
35 | version: 18.0.28
36 | '@types/react-dom':
37 | specifier: ^18.0.11
38 | version: 18.0.11
39 | '@typescript-eslint/eslint-plugin':
40 | specifier: ^5.54.0
41 | version: 5.54.1(@typescript-eslint/parser@5.54.0)(eslint@8.35.0)(typescript@4.9.5)
42 | '@typescript-eslint/parser':
43 | specifier: ^5.54.0
44 | version: 5.54.0(eslint@8.35.0)(typescript@4.9.5)
45 | autoprefixer:
46 | specifier: ^10.4.13
47 | version: 10.4.13(postcss@8.4.21)
48 | eslint:
49 | specifier: 8.35.0
50 | version: 8.35.0
51 | eslint-config-next:
52 | specifier: 13.2.3
53 | version: 13.2.3(eslint@8.35.0)(typescript@4.9.5)
54 | postcss:
55 | specifier: ^8.4.21
56 | version: 8.4.21
57 | prettier:
58 | specifier: ^2.8.4
59 | version: 2.8.4
60 | tailwindcss:
61 | specifier: ^3.2.7
62 | version: 3.2.7(postcss@8.4.21)
63 | tsx:
64 | specifier: ^3.12.3
65 | version: 3.12.3
66 | typescript:
67 | specifier: ^4.9.5
68 | version: 4.9.5
69 |
70 | packages:
71 |
72 | /@babel/runtime@7.21.0:
73 | resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
74 | engines: {node: '>=6.9.0'}
75 | dependencies:
76 | regenerator-runtime: 0.13.11
77 | dev: true
78 |
79 | /@esbuild-kit/cjs-loader@2.4.2:
80 | resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==}
81 | dependencies:
82 | '@esbuild-kit/core-utils': 3.1.0
83 | get-tsconfig: 4.4.0
84 | dev: true
85 |
86 | /@esbuild-kit/core-utils@3.1.0:
87 | resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==}
88 | dependencies:
89 | esbuild: 0.17.11
90 | source-map-support: 0.5.21
91 | dev: true
92 |
93 | /@esbuild-kit/esm-loader@2.5.5:
94 | resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==}
95 | dependencies:
96 | '@esbuild-kit/core-utils': 3.1.0
97 | get-tsconfig: 4.4.0
98 | dev: true
99 |
100 | /@esbuild/android-arm64@0.17.11:
101 | resolution: {integrity: sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg==}
102 | engines: {node: '>=12'}
103 | cpu: [arm64]
104 | os: [android]
105 | requiresBuild: true
106 | dev: true
107 | optional: true
108 |
109 | /@esbuild/android-arm@0.17.11:
110 | resolution: {integrity: sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw==}
111 | engines: {node: '>=12'}
112 | cpu: [arm]
113 | os: [android]
114 | requiresBuild: true
115 | dev: true
116 | optional: true
117 |
118 | /@esbuild/android-x64@0.17.11:
119 | resolution: {integrity: sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ==}
120 | engines: {node: '>=12'}
121 | cpu: [x64]
122 | os: [android]
123 | requiresBuild: true
124 | dev: true
125 | optional: true
126 |
127 | /@esbuild/darwin-arm64@0.17.11:
128 | resolution: {integrity: sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw==}
129 | engines: {node: '>=12'}
130 | cpu: [arm64]
131 | os: [darwin]
132 | requiresBuild: true
133 | dev: true
134 | optional: true
135 |
136 | /@esbuild/darwin-x64@0.17.11:
137 | resolution: {integrity: sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw==}
138 | engines: {node: '>=12'}
139 | cpu: [x64]
140 | os: [darwin]
141 | requiresBuild: true
142 | dev: true
143 | optional: true
144 |
145 | /@esbuild/freebsd-arm64@0.17.11:
146 | resolution: {integrity: sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q==}
147 | engines: {node: '>=12'}
148 | cpu: [arm64]
149 | os: [freebsd]
150 | requiresBuild: true
151 | dev: true
152 | optional: true
153 |
154 | /@esbuild/freebsd-x64@0.17.11:
155 | resolution: {integrity: sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g==}
156 | engines: {node: '>=12'}
157 | cpu: [x64]
158 | os: [freebsd]
159 | requiresBuild: true
160 | dev: true
161 | optional: true
162 |
163 | /@esbuild/linux-arm64@0.17.11:
164 | resolution: {integrity: sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg==}
165 | engines: {node: '>=12'}
166 | cpu: [arm64]
167 | os: [linux]
168 | requiresBuild: true
169 | dev: true
170 | optional: true
171 |
172 | /@esbuild/linux-arm@0.17.11:
173 | resolution: {integrity: sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg==}
174 | engines: {node: '>=12'}
175 | cpu: [arm]
176 | os: [linux]
177 | requiresBuild: true
178 | dev: true
179 | optional: true
180 |
181 | /@esbuild/linux-ia32@0.17.11:
182 | resolution: {integrity: sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA==}
183 | engines: {node: '>=12'}
184 | cpu: [ia32]
185 | os: [linux]
186 | requiresBuild: true
187 | dev: true
188 | optional: true
189 |
190 | /@esbuild/linux-loong64@0.17.11:
191 | resolution: {integrity: sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g==}
192 | engines: {node: '>=12'}
193 | cpu: [loong64]
194 | os: [linux]
195 | requiresBuild: true
196 | dev: true
197 | optional: true
198 |
199 | /@esbuild/linux-mips64el@0.17.11:
200 | resolution: {integrity: sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw==}
201 | engines: {node: '>=12'}
202 | cpu: [mips64el]
203 | os: [linux]
204 | requiresBuild: true
205 | dev: true
206 | optional: true
207 |
208 | /@esbuild/linux-ppc64@0.17.11:
209 | resolution: {integrity: sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA==}
210 | engines: {node: '>=12'}
211 | cpu: [ppc64]
212 | os: [linux]
213 | requiresBuild: true
214 | dev: true
215 | optional: true
216 |
217 | /@esbuild/linux-riscv64@0.17.11:
218 | resolution: {integrity: sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA==}
219 | engines: {node: '>=12'}
220 | cpu: [riscv64]
221 | os: [linux]
222 | requiresBuild: true
223 | dev: true
224 | optional: true
225 |
226 | /@esbuild/linux-s390x@0.17.11:
227 | resolution: {integrity: sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ==}
228 | engines: {node: '>=12'}
229 | cpu: [s390x]
230 | os: [linux]
231 | requiresBuild: true
232 | dev: true
233 | optional: true
234 |
235 | /@esbuild/linux-x64@0.17.11:
236 | resolution: {integrity: sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw==}
237 | engines: {node: '>=12'}
238 | cpu: [x64]
239 | os: [linux]
240 | requiresBuild: true
241 | dev: true
242 | optional: true
243 |
244 | /@esbuild/netbsd-x64@0.17.11:
245 | resolution: {integrity: sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag==}
246 | engines: {node: '>=12'}
247 | cpu: [x64]
248 | os: [netbsd]
249 | requiresBuild: true
250 | dev: true
251 | optional: true
252 |
253 | /@esbuild/openbsd-x64@0.17.11:
254 | resolution: {integrity: sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w==}
255 | engines: {node: '>=12'}
256 | cpu: [x64]
257 | os: [openbsd]
258 | requiresBuild: true
259 | dev: true
260 | optional: true
261 |
262 | /@esbuild/sunos-x64@0.17.11:
263 | resolution: {integrity: sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg==}
264 | engines: {node: '>=12'}
265 | cpu: [x64]
266 | os: [sunos]
267 | requiresBuild: true
268 | dev: true
269 | optional: true
270 |
271 | /@esbuild/win32-arm64@0.17.11:
272 | resolution: {integrity: sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ==}
273 | engines: {node: '>=12'}
274 | cpu: [arm64]
275 | os: [win32]
276 | requiresBuild: true
277 | dev: true
278 | optional: true
279 |
280 | /@esbuild/win32-ia32@0.17.11:
281 | resolution: {integrity: sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw==}
282 | engines: {node: '>=12'}
283 | cpu: [ia32]
284 | os: [win32]
285 | requiresBuild: true
286 | dev: true
287 | optional: true
288 |
289 | /@esbuild/win32-x64@0.17.11:
290 | resolution: {integrity: sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ==}
291 | engines: {node: '>=12'}
292 | cpu: [x64]
293 | os: [win32]
294 | requiresBuild: true
295 | dev: true
296 | optional: true
297 |
298 | /@eslint/eslintrc@2.0.0:
299 | resolution: {integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==}
300 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
301 | dependencies:
302 | ajv: 6.12.6
303 | debug: 4.3.4
304 | espree: 9.4.1
305 | globals: 13.20.0
306 | ignore: 5.2.4
307 | import-fresh: 3.3.0
308 | js-yaml: 4.1.0
309 | minimatch: 3.1.2
310 | strip-json-comments: 3.1.1
311 | transitivePeerDependencies:
312 | - supports-color
313 | dev: true
314 |
315 | /@eslint/js@8.35.0:
316 | resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==}
317 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
318 | dev: true
319 |
320 | /@gar/promisify@1.1.3:
321 | resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
322 | dev: false
323 | optional: true
324 |
325 | /@humanwhocodes/config-array@0.11.8:
326 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
327 | engines: {node: '>=10.10.0'}
328 | dependencies:
329 | '@humanwhocodes/object-schema': 1.2.1
330 | debug: 4.3.4
331 | minimatch: 3.1.2
332 | transitivePeerDependencies:
333 | - supports-color
334 | dev: true
335 |
336 | /@humanwhocodes/module-importer@1.0.1:
337 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
338 | engines: {node: '>=12.22'}
339 | dev: true
340 |
341 | /@humanwhocodes/object-schema@1.2.1:
342 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
343 | dev: true
344 |
345 | /@mapbox/node-pre-gyp@1.0.10:
346 | resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==}
347 | hasBin: true
348 | dependencies:
349 | detect-libc: 2.0.1
350 | https-proxy-agent: 5.0.1
351 | make-dir: 3.1.0
352 | node-fetch: 2.6.9
353 | nopt: 5.0.0
354 | npmlog: 5.0.1
355 | rimraf: 3.0.2
356 | semver: 7.3.8
357 | tar: 6.1.13
358 | transitivePeerDependencies:
359 | - encoding
360 | - supports-color
361 | dev: false
362 |
363 | /@next/env@13.2.3:
364 | resolution: {integrity: sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==}
365 | dev: false
366 |
367 | /@next/eslint-plugin-next@13.2.3:
368 | resolution: {integrity: sha512-QmMPItnU7VeojI1KnuwL9SLFWEwmaNHNlnOGpoTwdLoSiP9sc8KYiAHWEc4/44L+cAdCxcZYvn7frcRNP5l84Q==}
369 | dependencies:
370 | glob: 7.1.7
371 | dev: true
372 |
373 | /@next/swc-android-arm-eabi@13.2.3:
374 | resolution: {integrity: sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==}
375 | engines: {node: '>= 10'}
376 | cpu: [arm]
377 | os: [android]
378 | requiresBuild: true
379 | dev: false
380 | optional: true
381 |
382 | /@next/swc-android-arm64@13.2.3:
383 | resolution: {integrity: sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==}
384 | engines: {node: '>= 10'}
385 | cpu: [arm64]
386 | os: [android]
387 | requiresBuild: true
388 | dev: false
389 | optional: true
390 |
391 | /@next/swc-darwin-arm64@13.2.3:
392 | resolution: {integrity: sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==}
393 | engines: {node: '>= 10'}
394 | cpu: [arm64]
395 | os: [darwin]
396 | requiresBuild: true
397 | dev: false
398 | optional: true
399 |
400 | /@next/swc-darwin-x64@13.2.3:
401 | resolution: {integrity: sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==}
402 | engines: {node: '>= 10'}
403 | cpu: [x64]
404 | os: [darwin]
405 | requiresBuild: true
406 | dev: false
407 | optional: true
408 |
409 | /@next/swc-freebsd-x64@13.2.3:
410 | resolution: {integrity: sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==}
411 | engines: {node: '>= 10'}
412 | cpu: [x64]
413 | os: [freebsd]
414 | requiresBuild: true
415 | dev: false
416 | optional: true
417 |
418 | /@next/swc-linux-arm-gnueabihf@13.2.3:
419 | resolution: {integrity: sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==}
420 | engines: {node: '>= 10'}
421 | cpu: [arm]
422 | os: [linux]
423 | requiresBuild: true
424 | dev: false
425 | optional: true
426 |
427 | /@next/swc-linux-arm64-gnu@13.2.3:
428 | resolution: {integrity: sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==}
429 | engines: {node: '>= 10'}
430 | cpu: [arm64]
431 | os: [linux]
432 | requiresBuild: true
433 | dev: false
434 | optional: true
435 |
436 | /@next/swc-linux-arm64-musl@13.2.3:
437 | resolution: {integrity: sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==}
438 | engines: {node: '>= 10'}
439 | cpu: [arm64]
440 | os: [linux]
441 | requiresBuild: true
442 | dev: false
443 | optional: true
444 |
445 | /@next/swc-linux-x64-gnu@13.2.3:
446 | resolution: {integrity: sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==}
447 | engines: {node: '>= 10'}
448 | cpu: [x64]
449 | os: [linux]
450 | requiresBuild: true
451 | dev: false
452 | optional: true
453 |
454 | /@next/swc-linux-x64-musl@13.2.3:
455 | resolution: {integrity: sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==}
456 | engines: {node: '>= 10'}
457 | cpu: [x64]
458 | os: [linux]
459 | requiresBuild: true
460 | dev: false
461 | optional: true
462 |
463 | /@next/swc-win32-arm64-msvc@13.2.3:
464 | resolution: {integrity: sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==}
465 | engines: {node: '>= 10'}
466 | cpu: [arm64]
467 | os: [win32]
468 | requiresBuild: true
469 | dev: false
470 | optional: true
471 |
472 | /@next/swc-win32-ia32-msvc@13.2.3:
473 | resolution: {integrity: sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==}
474 | engines: {node: '>= 10'}
475 | cpu: [ia32]
476 | os: [win32]
477 | requiresBuild: true
478 | dev: false
479 | optional: true
480 |
481 | /@next/swc-win32-x64-msvc@13.2.3:
482 | resolution: {integrity: sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==}
483 | engines: {node: '>= 10'}
484 | cpu: [x64]
485 | os: [win32]
486 | requiresBuild: true
487 | dev: false
488 | optional: true
489 |
490 | /@nodelib/fs.scandir@2.1.5:
491 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
492 | engines: {node: '>= 8'}
493 | dependencies:
494 | '@nodelib/fs.stat': 2.0.5
495 | run-parallel: 1.2.0
496 | dev: true
497 |
498 | /@nodelib/fs.stat@2.0.5:
499 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
500 | engines: {node: '>= 8'}
501 | dev: true
502 |
503 | /@nodelib/fs.walk@1.2.8:
504 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
505 | engines: {node: '>= 8'}
506 | dependencies:
507 | '@nodelib/fs.scandir': 2.1.5
508 | fastq: 1.15.0
509 | dev: true
510 |
511 | /@npmcli/fs@1.1.1:
512 | resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
513 | dependencies:
514 | '@gar/promisify': 1.1.3
515 | semver: 7.3.8
516 | dev: false
517 | optional: true
518 |
519 | /@npmcli/move-file@1.1.2:
520 | resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
521 | engines: {node: '>=10'}
522 | deprecated: This functionality has been moved to @npmcli/fs
523 | dependencies:
524 | mkdirp: 1.0.4
525 | rimraf: 3.0.2
526 | dev: false
527 | optional: true
528 |
529 | /@pinecone-database/pinecone@0.0.8:
530 | resolution: {integrity: sha512-oz/fG4YfD/N1D/9gJ0LF3z4u8vfXdn8DxQ2qSgrJJQyVoh2LiUEht8udj/7wnJTtOBtcCFIB+l7Rc1l5fXIUCw==}
531 | dev: false
532 |
533 | /@pkgr/utils@2.3.1:
534 | resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
535 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
536 | dependencies:
537 | cross-spawn: 7.0.3
538 | is-glob: 4.0.3
539 | open: 8.4.2
540 | picocolors: 1.0.0
541 | tiny-glob: 0.2.9
542 | tslib: 2.5.0
543 | dev: true
544 |
545 | /@rushstack/eslint-patch@1.2.0:
546 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
547 | dev: true
548 |
549 | /@swc/helpers@0.4.14:
550 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
551 | dependencies:
552 | tslib: 2.5.0
553 | dev: false
554 |
555 | /@tootallnate/once@1.1.2:
556 | resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
557 | engines: {node: '>= 6'}
558 | dev: false
559 | optional: true
560 |
561 | /@types/glob@8.1.0:
562 | resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
563 | dependencies:
564 | '@types/minimatch': 5.1.2
565 | '@types/node': 18.14.6
566 | dev: false
567 |
568 | /@types/json-schema@7.0.11:
569 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
570 | dev: true
571 |
572 | /@types/json5@0.0.29:
573 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
574 | dev: true
575 |
576 | /@types/minimatch@5.1.2:
577 | resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
578 | dev: false
579 |
580 | /@types/node@18.14.6:
581 | resolution: {integrity: sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==}
582 |
583 | /@types/prop-types@15.7.5:
584 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
585 | dev: true
586 |
587 | /@types/react-dom@18.0.11:
588 | resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
589 | dependencies:
590 | '@types/react': 18.0.28
591 | dev: true
592 |
593 | /@types/react@18.0.28:
594 | resolution: {integrity: sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==}
595 | dependencies:
596 | '@types/prop-types': 15.7.5
597 | '@types/scheduler': 0.16.2
598 | csstype: 3.1.1
599 | dev: true
600 |
601 | /@types/scheduler@0.16.2:
602 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
603 | dev: true
604 |
605 | /@types/semver@7.3.13:
606 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
607 | dev: true
608 |
609 | /@typescript-eslint/eslint-plugin@5.54.1(@typescript-eslint/parser@5.54.0)(eslint@8.35.0)(typescript@4.9.5):
610 | resolution: {integrity: sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==}
611 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
612 | peerDependencies:
613 | '@typescript-eslint/parser': ^5.0.0
614 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
615 | typescript: '*'
616 | peerDependenciesMeta:
617 | typescript:
618 | optional: true
619 | dependencies:
620 | '@typescript-eslint/parser': 5.54.0(eslint@8.35.0)(typescript@4.9.5)
621 | '@typescript-eslint/scope-manager': 5.54.1
622 | '@typescript-eslint/type-utils': 5.54.1(eslint@8.35.0)(typescript@4.9.5)
623 | '@typescript-eslint/utils': 5.54.1(eslint@8.35.0)(typescript@4.9.5)
624 | debug: 4.3.4
625 | eslint: 8.35.0
626 | grapheme-splitter: 1.0.4
627 | ignore: 5.2.4
628 | natural-compare-lite: 1.4.0
629 | regexpp: 3.2.0
630 | semver: 7.3.8
631 | tsutils: 3.21.0(typescript@4.9.5)
632 | typescript: 4.9.5
633 | transitivePeerDependencies:
634 | - supports-color
635 | dev: true
636 |
637 | /@typescript-eslint/parser@5.54.0(eslint@8.35.0)(typescript@4.9.5):
638 | resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==}
639 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
640 | peerDependencies:
641 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
642 | typescript: '*'
643 | peerDependenciesMeta:
644 | typescript:
645 | optional: true
646 | dependencies:
647 | '@typescript-eslint/scope-manager': 5.54.0
648 | '@typescript-eslint/types': 5.54.0
649 | '@typescript-eslint/typescript-estree': 5.54.0(typescript@4.9.5)
650 | debug: 4.3.4
651 | eslint: 8.35.0
652 | typescript: 4.9.5
653 | transitivePeerDependencies:
654 | - supports-color
655 | dev: true
656 |
657 | /@typescript-eslint/scope-manager@5.54.0:
658 | resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==}
659 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
660 | dependencies:
661 | '@typescript-eslint/types': 5.54.0
662 | '@typescript-eslint/visitor-keys': 5.54.0
663 | dev: true
664 |
665 | /@typescript-eslint/scope-manager@5.54.1:
666 | resolution: {integrity: sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==}
667 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
668 | dependencies:
669 | '@typescript-eslint/types': 5.54.1
670 | '@typescript-eslint/visitor-keys': 5.54.1
671 | dev: true
672 |
673 | /@typescript-eslint/type-utils@5.54.1(eslint@8.35.0)(typescript@4.9.5):
674 | resolution: {integrity: sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==}
675 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
676 | peerDependencies:
677 | eslint: '*'
678 | typescript: '*'
679 | peerDependenciesMeta:
680 | typescript:
681 | optional: true
682 | dependencies:
683 | '@typescript-eslint/typescript-estree': 5.54.1(typescript@4.9.5)
684 | '@typescript-eslint/utils': 5.54.1(eslint@8.35.0)(typescript@4.9.5)
685 | debug: 4.3.4
686 | eslint: 8.35.0
687 | tsutils: 3.21.0(typescript@4.9.5)
688 | typescript: 4.9.5
689 | transitivePeerDependencies:
690 | - supports-color
691 | dev: true
692 |
693 | /@typescript-eslint/types@5.54.0:
694 | resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==}
695 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
696 | dev: true
697 |
698 | /@typescript-eslint/types@5.54.1:
699 | resolution: {integrity: sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==}
700 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
701 | dev: true
702 |
703 | /@typescript-eslint/typescript-estree@5.54.0(typescript@4.9.5):
704 | resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==}
705 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
706 | peerDependencies:
707 | typescript: '*'
708 | peerDependenciesMeta:
709 | typescript:
710 | optional: true
711 | dependencies:
712 | '@typescript-eslint/types': 5.54.0
713 | '@typescript-eslint/visitor-keys': 5.54.0
714 | debug: 4.3.4
715 | globby: 11.1.0
716 | is-glob: 4.0.3
717 | semver: 7.3.8
718 | tsutils: 3.21.0(typescript@4.9.5)
719 | typescript: 4.9.5
720 | transitivePeerDependencies:
721 | - supports-color
722 | dev: true
723 |
724 | /@typescript-eslint/typescript-estree@5.54.1(typescript@4.9.5):
725 | resolution: {integrity: sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==}
726 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
727 | peerDependencies:
728 | typescript: '*'
729 | peerDependenciesMeta:
730 | typescript:
731 | optional: true
732 | dependencies:
733 | '@typescript-eslint/types': 5.54.1
734 | '@typescript-eslint/visitor-keys': 5.54.1
735 | debug: 4.3.4
736 | globby: 11.1.0
737 | is-glob: 4.0.3
738 | semver: 7.3.8
739 | tsutils: 3.21.0(typescript@4.9.5)
740 | typescript: 4.9.5
741 | transitivePeerDependencies:
742 | - supports-color
743 | dev: true
744 |
745 | /@typescript-eslint/utils@5.54.1(eslint@8.35.0)(typescript@4.9.5):
746 | resolution: {integrity: sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==}
747 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
748 | peerDependencies:
749 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
750 | dependencies:
751 | '@types/json-schema': 7.0.11
752 | '@types/semver': 7.3.13
753 | '@typescript-eslint/scope-manager': 5.54.1
754 | '@typescript-eslint/types': 5.54.1
755 | '@typescript-eslint/typescript-estree': 5.54.1(typescript@4.9.5)
756 | eslint: 8.35.0
757 | eslint-scope: 5.1.1
758 | eslint-utils: 3.0.0(eslint@8.35.0)
759 | semver: 7.3.8
760 | transitivePeerDependencies:
761 | - supports-color
762 | - typescript
763 | dev: true
764 |
765 | /@typescript-eslint/visitor-keys@5.54.0:
766 | resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==}
767 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
768 | dependencies:
769 | '@typescript-eslint/types': 5.54.0
770 | eslint-visitor-keys: 3.3.0
771 | dev: true
772 |
773 | /@typescript-eslint/visitor-keys@5.54.1:
774 | resolution: {integrity: sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==}
775 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
776 | dependencies:
777 | '@typescript-eslint/types': 5.54.1
778 | eslint-visitor-keys: 3.3.0
779 | dev: true
780 |
781 | /abbrev@1.1.1:
782 | resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
783 | dev: false
784 |
785 | /acorn-jsx@5.3.2(acorn@8.8.2):
786 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
787 | peerDependencies:
788 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
789 | dependencies:
790 | acorn: 8.8.2
791 | dev: true
792 |
793 | /acorn-node@1.8.2:
794 | resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
795 | dependencies:
796 | acorn: 7.4.1
797 | acorn-walk: 7.2.0
798 | xtend: 4.0.2
799 | dev: true
800 |
801 | /acorn-walk@7.2.0:
802 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
803 | engines: {node: '>=0.4.0'}
804 | dev: true
805 |
806 | /acorn@7.4.1:
807 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
808 | engines: {node: '>=0.4.0'}
809 | hasBin: true
810 | dev: true
811 |
812 | /acorn@8.8.2:
813 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
814 | engines: {node: '>=0.4.0'}
815 | hasBin: true
816 | dev: true
817 |
818 | /agent-base@6.0.2:
819 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
820 | engines: {node: '>= 6.0.0'}
821 | dependencies:
822 | debug: 4.3.4
823 | transitivePeerDependencies:
824 | - supports-color
825 | dev: false
826 |
827 | /agentkeepalive@4.3.0:
828 | resolution: {integrity: sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==}
829 | engines: {node: '>= 8.0.0'}
830 | dependencies:
831 | debug: 4.3.4
832 | depd: 2.0.0
833 | humanize-ms: 1.2.1
834 | transitivePeerDependencies:
835 | - supports-color
836 | dev: false
837 | optional: true
838 |
839 | /aggregate-error@3.1.0:
840 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
841 | engines: {node: '>=8'}
842 | dependencies:
843 | clean-stack: 2.2.0
844 | indent-string: 4.0.0
845 | dev: false
846 | optional: true
847 |
848 | /ajv@6.12.6:
849 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
850 | dependencies:
851 | fast-deep-equal: 3.1.3
852 | fast-json-stable-stringify: 2.1.0
853 | json-schema-traverse: 0.4.1
854 | uri-js: 4.4.1
855 | dev: true
856 |
857 | /ansi-regex@5.0.1:
858 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
859 | engines: {node: '>=8'}
860 |
861 | /ansi-styles@4.3.0:
862 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
863 | engines: {node: '>=8'}
864 | dependencies:
865 | color-convert: 2.0.1
866 | dev: true
867 |
868 | /anymatch@3.1.3:
869 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
870 | engines: {node: '>= 8'}
871 | dependencies:
872 | normalize-path: 3.0.0
873 | picomatch: 2.3.1
874 | dev: true
875 |
876 | /aproba@2.0.0:
877 | resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
878 | dev: false
879 |
880 | /are-we-there-yet@2.0.0:
881 | resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
882 | engines: {node: '>=10'}
883 | dependencies:
884 | delegates: 1.0.0
885 | readable-stream: 3.6.1
886 | dev: false
887 |
888 | /are-we-there-yet@3.0.1:
889 | resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
890 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
891 | dependencies:
892 | delegates: 1.0.0
893 | readable-stream: 3.6.1
894 | dev: false
895 | optional: true
896 |
897 | /arg@5.0.2:
898 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
899 | dev: true
900 |
901 | /argparse@2.0.1:
902 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
903 | dev: true
904 |
905 | /aria-query@5.1.3:
906 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
907 | dependencies:
908 | deep-equal: 2.2.0
909 | dev: true
910 |
911 | /array-includes@3.1.6:
912 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
913 | engines: {node: '>= 0.4'}
914 | dependencies:
915 | call-bind: 1.0.2
916 | define-properties: 1.2.0
917 | es-abstract: 1.21.1
918 | get-intrinsic: 1.2.0
919 | is-string: 1.0.7
920 | dev: true
921 |
922 | /array-union@2.1.0:
923 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
924 | engines: {node: '>=8'}
925 | dev: true
926 |
927 | /array.prototype.flat@1.3.1:
928 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
929 | engines: {node: '>= 0.4'}
930 | dependencies:
931 | call-bind: 1.0.2
932 | define-properties: 1.2.0
933 | es-abstract: 1.21.1
934 | es-shim-unscopables: 1.0.0
935 | dev: true
936 |
937 | /array.prototype.flatmap@1.3.1:
938 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
939 | engines: {node: '>= 0.4'}
940 | dependencies:
941 | call-bind: 1.0.2
942 | define-properties: 1.2.0
943 | es-abstract: 1.21.1
944 | es-shim-unscopables: 1.0.0
945 | dev: true
946 |
947 | /array.prototype.tosorted@1.1.1:
948 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
949 | dependencies:
950 | call-bind: 1.0.2
951 | define-properties: 1.2.0
952 | es-abstract: 1.21.1
953 | es-shim-unscopables: 1.0.0
954 | get-intrinsic: 1.2.0
955 | dev: true
956 |
957 | /ast-types-flow@0.0.7:
958 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
959 | dev: true
960 |
961 | /asynckit@0.4.0:
962 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
963 | dev: false
964 |
965 | /autoprefixer@10.4.13(postcss@8.4.21):
966 | resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
967 | engines: {node: ^10 || ^12 || >=14}
968 | hasBin: true
969 | peerDependencies:
970 | postcss: ^8.1.0
971 | dependencies:
972 | browserslist: 4.21.5
973 | caniuse-lite: 1.0.30001460
974 | fraction.js: 4.2.0
975 | normalize-range: 0.1.2
976 | picocolors: 1.0.0
977 | postcss: 8.4.21
978 | postcss-value-parser: 4.2.0
979 | dev: true
980 |
981 | /available-typed-arrays@1.0.5:
982 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
983 | engines: {node: '>= 0.4'}
984 | dev: true
985 |
986 | /axe-core@4.6.3:
987 | resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==}
988 | engines: {node: '>=4'}
989 | dev: true
990 |
991 | /axios@0.26.1:
992 | resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==}
993 | dependencies:
994 | follow-redirects: 1.15.2
995 | transitivePeerDependencies:
996 | - debug
997 | dev: false
998 |
999 | /axobject-query@3.1.1:
1000 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
1001 | dependencies:
1002 | deep-equal: 2.2.0
1003 | dev: true
1004 |
1005 | /balanced-match@1.0.2:
1006 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1007 |
1008 | /binary-extensions@2.2.0:
1009 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
1010 | engines: {node: '>=8'}
1011 | dev: true
1012 |
1013 | /brace-expansion@1.1.11:
1014 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1015 | dependencies:
1016 | balanced-match: 1.0.2
1017 | concat-map: 0.0.1
1018 |
1019 | /brace-expansion@2.0.1:
1020 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
1021 | dependencies:
1022 | balanced-match: 1.0.2
1023 | dev: false
1024 |
1025 | /braces@3.0.2:
1026 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
1027 | engines: {node: '>=8'}
1028 | dependencies:
1029 | fill-range: 7.0.1
1030 | dev: true
1031 |
1032 | /browser-or-node@2.1.1:
1033 | resolution: {integrity: sha512-8CVjaLJGuSKMVTxJ2DpBl5XnlNDiT4cQFeuCJJrvJmts9YrTZDizTX7PjC2s6W4x+MBGZeEY6dGMrF04/6Hgqg==}
1034 | dev: false
1035 |
1036 | /browserslist@4.21.5:
1037 | resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
1038 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1039 | hasBin: true
1040 | dependencies:
1041 | caniuse-lite: 1.0.30001460
1042 | electron-to-chromium: 1.4.320
1043 | node-releases: 2.0.10
1044 | update-browserslist-db: 1.0.10(browserslist@4.21.5)
1045 | dev: true
1046 |
1047 | /buffer-from@1.1.2:
1048 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
1049 | dev: true
1050 |
1051 | /cacache@15.3.0:
1052 | resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
1053 | engines: {node: '>= 10'}
1054 | dependencies:
1055 | '@npmcli/fs': 1.1.1
1056 | '@npmcli/move-file': 1.1.2
1057 | chownr: 2.0.0
1058 | fs-minipass: 2.1.0
1059 | glob: 7.2.3
1060 | infer-owner: 1.0.4
1061 | lru-cache: 6.0.0
1062 | minipass: 3.3.6
1063 | minipass-collect: 1.0.2
1064 | minipass-flush: 1.0.5
1065 | minipass-pipeline: 1.2.4
1066 | mkdirp: 1.0.4
1067 | p-map: 4.0.0
1068 | promise-inflight: 1.0.1
1069 | rimraf: 3.0.2
1070 | ssri: 8.0.1
1071 | tar: 6.1.13
1072 | unique-filename: 1.1.1
1073 | transitivePeerDependencies:
1074 | - bluebird
1075 | dev: false
1076 | optional: true
1077 |
1078 | /call-bind@1.0.2:
1079 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
1080 | dependencies:
1081 | function-bind: 1.1.1
1082 | get-intrinsic: 1.2.0
1083 | dev: true
1084 |
1085 | /callsites@3.1.0:
1086 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1087 | engines: {node: '>=6'}
1088 | dev: true
1089 |
1090 | /camelcase-css@2.0.1:
1091 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
1092 | engines: {node: '>= 6'}
1093 | dev: true
1094 |
1095 | /caniuse-lite@1.0.30001460:
1096 | resolution: {integrity: sha512-Bud7abqjvEjipUkpLs4D7gR0l8hBYBHoa+tGtKJHvT2AYzLp1z7EmVkUT4ERpVUfca8S2HGIVs883D8pUH1ZzQ==}
1097 |
1098 | /chalk@4.1.2:
1099 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1100 | engines: {node: '>=10'}
1101 | dependencies:
1102 | ansi-styles: 4.3.0
1103 | supports-color: 7.2.0
1104 | dev: true
1105 |
1106 | /chokidar@3.5.3:
1107 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
1108 | engines: {node: '>= 8.10.0'}
1109 | dependencies:
1110 | anymatch: 3.1.3
1111 | braces: 3.0.2
1112 | glob-parent: 5.1.2
1113 | is-binary-path: 2.1.0
1114 | is-glob: 4.0.3
1115 | normalize-path: 3.0.0
1116 | readdirp: 3.6.0
1117 | optionalDependencies:
1118 | fsevents: 2.3.2
1119 | dev: true
1120 |
1121 | /chownr@2.0.0:
1122 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
1123 | engines: {node: '>=10'}
1124 | dev: false
1125 |
1126 | /clean-stack@2.2.0:
1127 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
1128 | engines: {node: '>=6'}
1129 | dev: false
1130 | optional: true
1131 |
1132 | /client-only@0.0.1:
1133 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
1134 | dev: false
1135 |
1136 | /color-convert@2.0.1:
1137 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1138 | engines: {node: '>=7.0.0'}
1139 | dependencies:
1140 | color-name: 1.1.4
1141 | dev: true
1142 |
1143 | /color-name@1.1.4:
1144 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1145 | dev: true
1146 |
1147 | /color-support@1.1.3:
1148 | resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
1149 | hasBin: true
1150 | dev: false
1151 |
1152 | /combined-stream@1.0.8:
1153 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
1154 | engines: {node: '>= 0.8'}
1155 | dependencies:
1156 | delayed-stream: 1.0.0
1157 | dev: false
1158 |
1159 | /commander@7.2.0:
1160 | resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
1161 | engines: {node: '>= 10'}
1162 | dev: false
1163 |
1164 | /concat-map@0.0.1:
1165 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1166 |
1167 | /console-control-strings@1.1.0:
1168 | resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
1169 | dev: false
1170 |
1171 | /cross-spawn@7.0.3:
1172 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1173 | engines: {node: '>= 8'}
1174 | dependencies:
1175 | path-key: 3.1.1
1176 | shebang-command: 2.0.0
1177 | which: 2.0.2
1178 | dev: true
1179 |
1180 | /cssesc@3.0.0:
1181 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1182 | engines: {node: '>=4'}
1183 | hasBin: true
1184 | dev: true
1185 |
1186 | /csstype@3.1.1:
1187 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
1188 | dev: true
1189 |
1190 | /d3-dsv@3.0.1:
1191 | resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==}
1192 | engines: {node: '>=12'}
1193 | hasBin: true
1194 | dependencies:
1195 | commander: 7.2.0
1196 | iconv-lite: 0.6.3
1197 | rw: 1.3.3
1198 | dev: false
1199 |
1200 | /damerau-levenshtein@1.0.8:
1201 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
1202 | dev: true
1203 |
1204 | /debug@3.2.7:
1205 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
1206 | peerDependencies:
1207 | supports-color: '*'
1208 | peerDependenciesMeta:
1209 | supports-color:
1210 | optional: true
1211 | dependencies:
1212 | ms: 2.1.3
1213 |
1214 | /debug@4.3.4:
1215 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1216 | engines: {node: '>=6.0'}
1217 | peerDependencies:
1218 | supports-color: '*'
1219 | peerDependenciesMeta:
1220 | supports-color:
1221 | optional: true
1222 | dependencies:
1223 | ms: 2.1.2
1224 |
1225 | /deep-equal@2.2.0:
1226 | resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
1227 | dependencies:
1228 | call-bind: 1.0.2
1229 | es-get-iterator: 1.1.3
1230 | get-intrinsic: 1.2.0
1231 | is-arguments: 1.1.1
1232 | is-array-buffer: 3.0.2
1233 | is-date-object: 1.0.5
1234 | is-regex: 1.1.4
1235 | is-shared-array-buffer: 1.0.2
1236 | isarray: 2.0.5
1237 | object-is: 1.1.5
1238 | object-keys: 1.1.1
1239 | object.assign: 4.1.4
1240 | regexp.prototype.flags: 1.4.3
1241 | side-channel: 1.0.4
1242 | which-boxed-primitive: 1.0.2
1243 | which-collection: 1.0.1
1244 | which-typed-array: 1.1.9
1245 | dev: true
1246 |
1247 | /deep-is@0.1.4:
1248 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1249 | dev: true
1250 |
1251 | /deepcopy@2.1.0:
1252 | resolution: {integrity: sha512-8cZeTb1ZKC3bdSCP6XOM1IsTczIO73fdqtwa2B0N15eAz7gmyhQo+mc5gnFuulsgN3vIQYmTgbmQVKalH1dKvQ==}
1253 | dependencies:
1254 | type-detect: 4.0.8
1255 | dev: false
1256 |
1257 | /define-lazy-prop@2.0.0:
1258 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
1259 | engines: {node: '>=8'}
1260 | dev: true
1261 |
1262 | /define-properties@1.2.0:
1263 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
1264 | engines: {node: '>= 0.4'}
1265 | dependencies:
1266 | has-property-descriptors: 1.0.0
1267 | object-keys: 1.1.1
1268 | dev: true
1269 |
1270 | /defined@1.0.1:
1271 | resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
1272 | dev: true
1273 |
1274 | /delayed-stream@1.0.0:
1275 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
1276 | engines: {node: '>=0.4.0'}
1277 | dev: false
1278 |
1279 | /delegates@1.0.0:
1280 | resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
1281 | dev: false
1282 |
1283 | /depd@2.0.0:
1284 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
1285 | engines: {node: '>= 0.8'}
1286 | dev: false
1287 | optional: true
1288 |
1289 | /detect-libc@2.0.1:
1290 | resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
1291 | engines: {node: '>=8'}
1292 | dev: false
1293 |
1294 | /detective@5.2.1:
1295 | resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
1296 | engines: {node: '>=0.8.0'}
1297 | hasBin: true
1298 | dependencies:
1299 | acorn-node: 1.8.2
1300 | defined: 1.0.1
1301 | minimist: 1.2.8
1302 | dev: true
1303 |
1304 | /didyoumean@1.2.2:
1305 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
1306 | dev: true
1307 |
1308 | /dir-glob@3.0.1:
1309 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1310 | engines: {node: '>=8'}
1311 | dependencies:
1312 | path-type: 4.0.0
1313 | dev: true
1314 |
1315 | /dlv@1.1.3:
1316 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1317 | dev: true
1318 |
1319 | /doctrine@2.1.0:
1320 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
1321 | engines: {node: '>=0.10.0'}
1322 | dependencies:
1323 | esutils: 2.0.3
1324 | dev: true
1325 |
1326 | /doctrine@3.0.0:
1327 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1328 | engines: {node: '>=6.0.0'}
1329 | dependencies:
1330 | esutils: 2.0.3
1331 | dev: true
1332 |
1333 | /dotenv@16.0.3:
1334 | resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
1335 | engines: {node: '>=12'}
1336 | dev: false
1337 |
1338 | /electron-to-chromium@1.4.320:
1339 | resolution: {integrity: sha512-h70iRscrNluMZPVICXYl5SSB+rBKo22XfuIS1ER0OQxQZpKTnFpuS6coj7wY9M/3trv7OR88rRMOlKmRvDty7Q==}
1340 | dev: true
1341 |
1342 | /emoji-regex@8.0.0:
1343 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
1344 | dev: false
1345 |
1346 | /emoji-regex@9.2.2:
1347 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
1348 | dev: true
1349 |
1350 | /encoding@0.1.13:
1351 | resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
1352 | requiresBuild: true
1353 | dependencies:
1354 | iconv-lite: 0.6.3
1355 | dev: false
1356 | optional: true
1357 |
1358 | /enhanced-resolve@5.12.0:
1359 | resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
1360 | engines: {node: '>=10.13.0'}
1361 | dependencies:
1362 | graceful-fs: 4.2.10
1363 | tapable: 2.2.1
1364 | dev: true
1365 |
1366 | /env-paths@2.2.1:
1367 | resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
1368 | engines: {node: '>=6'}
1369 | dev: false
1370 | optional: true
1371 |
1372 | /err-code@2.0.3:
1373 | resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
1374 | dev: false
1375 | optional: true
1376 |
1377 | /es-abstract@1.21.1:
1378 | resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
1379 | engines: {node: '>= 0.4'}
1380 | dependencies:
1381 | available-typed-arrays: 1.0.5
1382 | call-bind: 1.0.2
1383 | es-set-tostringtag: 2.0.1
1384 | es-to-primitive: 1.2.1
1385 | function-bind: 1.1.1
1386 | function.prototype.name: 1.1.5
1387 | get-intrinsic: 1.2.0
1388 | get-symbol-description: 1.0.0
1389 | globalthis: 1.0.3
1390 | gopd: 1.0.1
1391 | has: 1.0.3
1392 | has-property-descriptors: 1.0.0
1393 | has-proto: 1.0.1
1394 | has-symbols: 1.0.3
1395 | internal-slot: 1.0.5
1396 | is-array-buffer: 3.0.2
1397 | is-callable: 1.2.7
1398 | is-negative-zero: 2.0.2
1399 | is-regex: 1.1.4
1400 | is-shared-array-buffer: 1.0.2
1401 | is-string: 1.0.7
1402 | is-typed-array: 1.1.10
1403 | is-weakref: 1.0.2
1404 | object-inspect: 1.12.3
1405 | object-keys: 1.1.1
1406 | object.assign: 4.1.4
1407 | regexp.prototype.flags: 1.4.3
1408 | safe-regex-test: 1.0.0
1409 | string.prototype.trimend: 1.0.6
1410 | string.prototype.trimstart: 1.0.6
1411 | typed-array-length: 1.0.4
1412 | unbox-primitive: 1.0.2
1413 | which-typed-array: 1.1.9
1414 | dev: true
1415 |
1416 | /es-get-iterator@1.1.3:
1417 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
1418 | dependencies:
1419 | call-bind: 1.0.2
1420 | get-intrinsic: 1.2.0
1421 | has-symbols: 1.0.3
1422 | is-arguments: 1.1.1
1423 | is-map: 2.0.2
1424 | is-set: 2.0.2
1425 | is-string: 1.0.7
1426 | isarray: 2.0.5
1427 | stop-iteration-iterator: 1.0.0
1428 | dev: true
1429 |
1430 | /es-set-tostringtag@2.0.1:
1431 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
1432 | engines: {node: '>= 0.4'}
1433 | dependencies:
1434 | get-intrinsic: 1.2.0
1435 | has: 1.0.3
1436 | has-tostringtag: 1.0.0
1437 | dev: true
1438 |
1439 | /es-shim-unscopables@1.0.0:
1440 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
1441 | dependencies:
1442 | has: 1.0.3
1443 | dev: true
1444 |
1445 | /es-to-primitive@1.2.1:
1446 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
1447 | engines: {node: '>= 0.4'}
1448 | dependencies:
1449 | is-callable: 1.2.7
1450 | is-date-object: 1.0.5
1451 | is-symbol: 1.0.4
1452 | dev: true
1453 |
1454 | /esbuild@0.17.11:
1455 | resolution: {integrity: sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg==}
1456 | engines: {node: '>=12'}
1457 | hasBin: true
1458 | requiresBuild: true
1459 | optionalDependencies:
1460 | '@esbuild/android-arm': 0.17.11
1461 | '@esbuild/android-arm64': 0.17.11
1462 | '@esbuild/android-x64': 0.17.11
1463 | '@esbuild/darwin-arm64': 0.17.11
1464 | '@esbuild/darwin-x64': 0.17.11
1465 | '@esbuild/freebsd-arm64': 0.17.11
1466 | '@esbuild/freebsd-x64': 0.17.11
1467 | '@esbuild/linux-arm': 0.17.11
1468 | '@esbuild/linux-arm64': 0.17.11
1469 | '@esbuild/linux-ia32': 0.17.11
1470 | '@esbuild/linux-loong64': 0.17.11
1471 | '@esbuild/linux-mips64el': 0.17.11
1472 | '@esbuild/linux-ppc64': 0.17.11
1473 | '@esbuild/linux-riscv64': 0.17.11
1474 | '@esbuild/linux-s390x': 0.17.11
1475 | '@esbuild/linux-x64': 0.17.11
1476 | '@esbuild/netbsd-x64': 0.17.11
1477 | '@esbuild/openbsd-x64': 0.17.11
1478 | '@esbuild/sunos-x64': 0.17.11
1479 | '@esbuild/win32-arm64': 0.17.11
1480 | '@esbuild/win32-ia32': 0.17.11
1481 | '@esbuild/win32-x64': 0.17.11
1482 | dev: true
1483 |
1484 | /escalade@3.1.1:
1485 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
1486 | engines: {node: '>=6'}
1487 | dev: true
1488 |
1489 | /escape-string-regexp@4.0.0:
1490 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1491 | engines: {node: '>=10'}
1492 | dev: true
1493 |
1494 | /eslint-config-next@13.2.3(eslint@8.35.0)(typescript@4.9.5):
1495 | resolution: {integrity: sha512-kPulHiQEHGei9hIaaNGygHRc0UzlWM+3euOmYbxNkd2Nbhci5rrCDeMBMPSV8xgUssphDGmwDHWbk4VZz3rlZQ==}
1496 | peerDependencies:
1497 | eslint: ^7.23.0 || ^8.0.0
1498 | typescript: '>=3.3.1'
1499 | peerDependenciesMeta:
1500 | typescript:
1501 | optional: true
1502 | dependencies:
1503 | '@next/eslint-plugin-next': 13.2.3
1504 | '@rushstack/eslint-patch': 1.2.0
1505 | '@typescript-eslint/parser': 5.54.0(eslint@8.35.0)(typescript@4.9.5)
1506 | eslint: 8.35.0
1507 | eslint-import-resolver-node: 0.3.7
1508 | eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.35.0)
1509 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.35.0)
1510 | eslint-plugin-jsx-a11y: 6.7.1(eslint@8.35.0)
1511 | eslint-plugin-react: 7.32.2(eslint@8.35.0)
1512 | eslint-plugin-react-hooks: 4.6.0(eslint@8.35.0)
1513 | typescript: 4.9.5
1514 | transitivePeerDependencies:
1515 | - eslint-import-resolver-webpack
1516 | - supports-color
1517 | dev: true
1518 |
1519 | /eslint-import-resolver-node@0.3.7:
1520 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
1521 | dependencies:
1522 | debug: 3.2.7
1523 | is-core-module: 2.11.0
1524 | resolve: 1.22.1
1525 | transitivePeerDependencies:
1526 | - supports-color
1527 | dev: true
1528 |
1529 | /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.35.0):
1530 | resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==}
1531 | engines: {node: ^14.18.0 || >=16.0.0}
1532 | peerDependencies:
1533 | eslint: '*'
1534 | eslint-plugin-import: '*'
1535 | dependencies:
1536 | debug: 4.3.4
1537 | enhanced-resolve: 5.12.0
1538 | eslint: 8.35.0
1539 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.35.0)
1540 | get-tsconfig: 4.4.0
1541 | globby: 13.1.3
1542 | is-core-module: 2.11.0
1543 | is-glob: 4.0.3
1544 | synckit: 0.8.5
1545 | transitivePeerDependencies:
1546 | - supports-color
1547 | dev: true
1548 |
1549 | /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.35.0):
1550 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
1551 | engines: {node: '>=4'}
1552 | peerDependencies:
1553 | '@typescript-eslint/parser': '*'
1554 | eslint: '*'
1555 | eslint-import-resolver-node: '*'
1556 | eslint-import-resolver-typescript: '*'
1557 | eslint-import-resolver-webpack: '*'
1558 | peerDependenciesMeta:
1559 | '@typescript-eslint/parser':
1560 | optional: true
1561 | eslint:
1562 | optional: true
1563 | eslint-import-resolver-node:
1564 | optional: true
1565 | eslint-import-resolver-typescript:
1566 | optional: true
1567 | eslint-import-resolver-webpack:
1568 | optional: true
1569 | dependencies:
1570 | '@typescript-eslint/parser': 5.54.0(eslint@8.35.0)(typescript@4.9.5)
1571 | debug: 3.2.7
1572 | eslint: 8.35.0
1573 | eslint-import-resolver-node: 0.3.7
1574 | eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.35.0)
1575 | transitivePeerDependencies:
1576 | - supports-color
1577 | dev: true
1578 |
1579 | /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.35.0):
1580 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
1581 | engines: {node: '>=4'}
1582 | peerDependencies:
1583 | '@typescript-eslint/parser': '*'
1584 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
1585 | peerDependenciesMeta:
1586 | '@typescript-eslint/parser':
1587 | optional: true
1588 | dependencies:
1589 | '@typescript-eslint/parser': 5.54.0(eslint@8.35.0)(typescript@4.9.5)
1590 | array-includes: 3.1.6
1591 | array.prototype.flat: 1.3.1
1592 | array.prototype.flatmap: 1.3.1
1593 | debug: 3.2.7
1594 | doctrine: 2.1.0
1595 | eslint: 8.35.0
1596 | eslint-import-resolver-node: 0.3.7
1597 | eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.54.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.35.0)
1598 | has: 1.0.3
1599 | is-core-module: 2.11.0
1600 | is-glob: 4.0.3
1601 | minimatch: 3.1.2
1602 | object.values: 1.1.6
1603 | resolve: 1.22.1
1604 | semver: 6.3.0
1605 | tsconfig-paths: 3.14.2
1606 | transitivePeerDependencies:
1607 | - eslint-import-resolver-typescript
1608 | - eslint-import-resolver-webpack
1609 | - supports-color
1610 | dev: true
1611 |
1612 | /eslint-plugin-jsx-a11y@6.7.1(eslint@8.35.0):
1613 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
1614 | engines: {node: '>=4.0'}
1615 | peerDependencies:
1616 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1617 | dependencies:
1618 | '@babel/runtime': 7.21.0
1619 | aria-query: 5.1.3
1620 | array-includes: 3.1.6
1621 | array.prototype.flatmap: 1.3.1
1622 | ast-types-flow: 0.0.7
1623 | axe-core: 4.6.3
1624 | axobject-query: 3.1.1
1625 | damerau-levenshtein: 1.0.8
1626 | emoji-regex: 9.2.2
1627 | eslint: 8.35.0
1628 | has: 1.0.3
1629 | jsx-ast-utils: 3.3.3
1630 | language-tags: 1.0.5
1631 | minimatch: 3.1.2
1632 | object.entries: 1.1.6
1633 | object.fromentries: 2.0.6
1634 | semver: 6.3.0
1635 | dev: true
1636 |
1637 | /eslint-plugin-react-hooks@4.6.0(eslint@8.35.0):
1638 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1639 | engines: {node: '>=10'}
1640 | peerDependencies:
1641 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1642 | dependencies:
1643 | eslint: 8.35.0
1644 | dev: true
1645 |
1646 | /eslint-plugin-react@7.32.2(eslint@8.35.0):
1647 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
1648 | engines: {node: '>=4'}
1649 | peerDependencies:
1650 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1651 | dependencies:
1652 | array-includes: 3.1.6
1653 | array.prototype.flatmap: 1.3.1
1654 | array.prototype.tosorted: 1.1.1
1655 | doctrine: 2.1.0
1656 | eslint: 8.35.0
1657 | estraverse: 5.3.0
1658 | jsx-ast-utils: 3.3.3
1659 | minimatch: 3.1.2
1660 | object.entries: 1.1.6
1661 | object.fromentries: 2.0.6
1662 | object.hasown: 1.1.2
1663 | object.values: 1.1.6
1664 | prop-types: 15.8.1
1665 | resolve: 2.0.0-next.4
1666 | semver: 6.3.0
1667 | string.prototype.matchall: 4.0.8
1668 | dev: true
1669 |
1670 | /eslint-scope@5.1.1:
1671 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1672 | engines: {node: '>=8.0.0'}
1673 | dependencies:
1674 | esrecurse: 4.3.0
1675 | estraverse: 4.3.0
1676 | dev: true
1677 |
1678 | /eslint-scope@7.1.1:
1679 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
1680 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1681 | dependencies:
1682 | esrecurse: 4.3.0
1683 | estraverse: 5.3.0
1684 | dev: true
1685 |
1686 | /eslint-utils@3.0.0(eslint@8.35.0):
1687 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
1688 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
1689 | peerDependencies:
1690 | eslint: '>=5'
1691 | dependencies:
1692 | eslint: 8.35.0
1693 | eslint-visitor-keys: 2.1.0
1694 | dev: true
1695 |
1696 | /eslint-visitor-keys@2.1.0:
1697 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
1698 | engines: {node: '>=10'}
1699 | dev: true
1700 |
1701 | /eslint-visitor-keys@3.3.0:
1702 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
1703 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1704 | dev: true
1705 |
1706 | /eslint@8.35.0:
1707 | resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==}
1708 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1709 | hasBin: true
1710 | dependencies:
1711 | '@eslint/eslintrc': 2.0.0
1712 | '@eslint/js': 8.35.0
1713 | '@humanwhocodes/config-array': 0.11.8
1714 | '@humanwhocodes/module-importer': 1.0.1
1715 | '@nodelib/fs.walk': 1.2.8
1716 | ajv: 6.12.6
1717 | chalk: 4.1.2
1718 | cross-spawn: 7.0.3
1719 | debug: 4.3.4
1720 | doctrine: 3.0.0
1721 | escape-string-regexp: 4.0.0
1722 | eslint-scope: 7.1.1
1723 | eslint-utils: 3.0.0(eslint@8.35.0)
1724 | eslint-visitor-keys: 3.3.0
1725 | espree: 9.4.1
1726 | esquery: 1.5.0
1727 | esutils: 2.0.3
1728 | fast-deep-equal: 3.1.3
1729 | file-entry-cache: 6.0.1
1730 | find-up: 5.0.0
1731 | glob-parent: 6.0.2
1732 | globals: 13.20.0
1733 | grapheme-splitter: 1.0.4
1734 | ignore: 5.2.4
1735 | import-fresh: 3.3.0
1736 | imurmurhash: 0.1.4
1737 | is-glob: 4.0.3
1738 | is-path-inside: 3.0.3
1739 | js-sdsl: 4.3.0
1740 | js-yaml: 4.1.0
1741 | json-stable-stringify-without-jsonify: 1.0.1
1742 | levn: 0.4.1
1743 | lodash.merge: 4.6.2
1744 | minimatch: 3.1.2
1745 | natural-compare: 1.4.0
1746 | optionator: 0.9.1
1747 | regexpp: 3.2.0
1748 | strip-ansi: 6.0.1
1749 | strip-json-comments: 3.1.1
1750 | text-table: 0.2.0
1751 | transitivePeerDependencies:
1752 | - supports-color
1753 | dev: true
1754 |
1755 | /espree@9.4.1:
1756 | resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
1757 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1758 | dependencies:
1759 | acorn: 8.8.2
1760 | acorn-jsx: 5.3.2(acorn@8.8.2)
1761 | eslint-visitor-keys: 3.3.0
1762 | dev: true
1763 |
1764 | /esquery@1.5.0:
1765 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1766 | engines: {node: '>=0.10'}
1767 | dependencies:
1768 | estraverse: 5.3.0
1769 | dev: true
1770 |
1771 | /esrecurse@4.3.0:
1772 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1773 | engines: {node: '>=4.0'}
1774 | dependencies:
1775 | estraverse: 5.3.0
1776 | dev: true
1777 |
1778 | /estraverse@4.3.0:
1779 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
1780 | engines: {node: '>=4.0'}
1781 | dev: true
1782 |
1783 | /estraverse@5.3.0:
1784 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1785 | engines: {node: '>=4.0'}
1786 | dev: true
1787 |
1788 | /esutils@2.0.3:
1789 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1790 | engines: {node: '>=0.10.0'}
1791 | dev: true
1792 |
1793 | /eventemitter3@4.0.7:
1794 | resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
1795 | dev: false
1796 |
1797 | /eventsource-parser@0.1.0:
1798 | resolution: {integrity: sha512-M9QjFtEIkwytUarnx113HGmgtk52LSn3jNAtnWKi3V+b9rqSfQeVdLsaD5AG/O4IrGQwmAAHBIsqbmURPTd2rA==}
1799 | engines: {node: '>=14.18'}
1800 | dev: false
1801 |
1802 | /exponential-backoff@3.1.1:
1803 | resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
1804 | dev: false
1805 |
1806 | /expr-eval@2.0.2:
1807 | resolution: {integrity: sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==}
1808 | dev: false
1809 |
1810 | /fast-deep-equal@3.1.3:
1811 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1812 | dev: true
1813 |
1814 | /fast-glob@3.2.12:
1815 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
1816 | engines: {node: '>=8.6.0'}
1817 | dependencies:
1818 | '@nodelib/fs.stat': 2.0.5
1819 | '@nodelib/fs.walk': 1.2.8
1820 | glob-parent: 5.1.2
1821 | merge2: 1.4.1
1822 | micromatch: 4.0.5
1823 | dev: true
1824 |
1825 | /fast-json-stable-stringify@2.1.0:
1826 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1827 | dev: true
1828 |
1829 | /fast-levenshtein@2.0.6:
1830 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1831 | dev: true
1832 |
1833 | /fastq@1.15.0:
1834 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
1835 | dependencies:
1836 | reusify: 1.0.4
1837 | dev: true
1838 |
1839 | /file-entry-cache@6.0.1:
1840 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1841 | engines: {node: ^10.12.0 || >=12.0.0}
1842 | dependencies:
1843 | flat-cache: 3.0.4
1844 | dev: true
1845 |
1846 | /fill-range@7.0.1:
1847 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1848 | engines: {node: '>=8'}
1849 | dependencies:
1850 | to-regex-range: 5.0.1
1851 | dev: true
1852 |
1853 | /find-up@5.0.0:
1854 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1855 | engines: {node: '>=10'}
1856 | dependencies:
1857 | locate-path: 6.0.0
1858 | path-exists: 4.0.0
1859 | dev: true
1860 |
1861 | /flat-cache@3.0.4:
1862 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
1863 | engines: {node: ^10.12.0 || >=12.0.0}
1864 | dependencies:
1865 | flatted: 3.2.7
1866 | rimraf: 3.0.2
1867 | dev: true
1868 |
1869 | /flatted@3.2.7:
1870 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
1871 | dev: true
1872 |
1873 | /follow-redirects@1.15.2:
1874 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
1875 | engines: {node: '>=4.0'}
1876 | peerDependencies:
1877 | debug: '*'
1878 | peerDependenciesMeta:
1879 | debug:
1880 | optional: true
1881 | dev: false
1882 |
1883 | /for-each@0.3.3:
1884 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1885 | dependencies:
1886 | is-callable: 1.2.7
1887 | dev: true
1888 |
1889 | /form-data@4.0.0:
1890 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
1891 | engines: {node: '>= 6'}
1892 | dependencies:
1893 | asynckit: 0.4.0
1894 | combined-stream: 1.0.8
1895 | mime-types: 2.1.35
1896 | dev: false
1897 |
1898 | /fraction.js@4.2.0:
1899 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
1900 | dev: true
1901 |
1902 | /fs-minipass@2.1.0:
1903 | resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
1904 | engines: {node: '>= 8'}
1905 | dependencies:
1906 | minipass: 3.3.6
1907 | dev: false
1908 |
1909 | /fs.realpath@1.0.0:
1910 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1911 |
1912 | /fsevents@2.3.2:
1913 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
1914 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1915 | os: [darwin]
1916 | requiresBuild: true
1917 | dev: true
1918 | optional: true
1919 |
1920 | /function-bind@1.1.1:
1921 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1922 | dev: true
1923 |
1924 | /function.prototype.name@1.1.5:
1925 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
1926 | engines: {node: '>= 0.4'}
1927 | dependencies:
1928 | call-bind: 1.0.2
1929 | define-properties: 1.2.0
1930 | es-abstract: 1.21.1
1931 | functions-have-names: 1.2.3
1932 | dev: true
1933 |
1934 | /functions-have-names@1.2.3:
1935 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1936 | dev: true
1937 |
1938 | /gauge@3.0.2:
1939 | resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
1940 | engines: {node: '>=10'}
1941 | dependencies:
1942 | aproba: 2.0.0
1943 | color-support: 1.1.3
1944 | console-control-strings: 1.1.0
1945 | has-unicode: 2.0.1
1946 | object-assign: 4.1.1
1947 | signal-exit: 3.0.7
1948 | string-width: 4.2.3
1949 | strip-ansi: 6.0.1
1950 | wide-align: 1.1.5
1951 | dev: false
1952 |
1953 | /gauge@4.0.4:
1954 | resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
1955 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
1956 | dependencies:
1957 | aproba: 2.0.0
1958 | color-support: 1.1.3
1959 | console-control-strings: 1.1.0
1960 | has-unicode: 2.0.1
1961 | signal-exit: 3.0.7
1962 | string-width: 4.2.3
1963 | strip-ansi: 6.0.1
1964 | wide-align: 1.1.5
1965 | dev: false
1966 | optional: true
1967 |
1968 | /get-intrinsic@1.2.0:
1969 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
1970 | dependencies:
1971 | function-bind: 1.1.1
1972 | has: 1.0.3
1973 | has-symbols: 1.0.3
1974 | dev: true
1975 |
1976 | /get-symbol-description@1.0.0:
1977 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
1978 | engines: {node: '>= 0.4'}
1979 | dependencies:
1980 | call-bind: 1.0.2
1981 | get-intrinsic: 1.2.0
1982 | dev: true
1983 |
1984 | /get-tsconfig@4.4.0:
1985 | resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==}
1986 | dev: true
1987 |
1988 | /glob-parent@5.1.2:
1989 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1990 | engines: {node: '>= 6'}
1991 | dependencies:
1992 | is-glob: 4.0.3
1993 | dev: true
1994 |
1995 | /glob-parent@6.0.2:
1996 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1997 | engines: {node: '>=10.13.0'}
1998 | dependencies:
1999 | is-glob: 4.0.3
2000 | dev: true
2001 |
2002 | /glob@7.1.7:
2003 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
2004 | dependencies:
2005 | fs.realpath: 1.0.0
2006 | inflight: 1.0.6
2007 | inherits: 2.0.4
2008 | minimatch: 3.1.2
2009 | once: 1.4.0
2010 | path-is-absolute: 1.0.1
2011 | dev: true
2012 |
2013 | /glob@7.2.3:
2014 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
2015 | dependencies:
2016 | fs.realpath: 1.0.0
2017 | inflight: 1.0.6
2018 | inherits: 2.0.4
2019 | minimatch: 3.1.2
2020 | once: 1.4.0
2021 | path-is-absolute: 1.0.1
2022 |
2023 | /glob@9.2.1:
2024 | resolution: {integrity: sha512-Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA==}
2025 | engines: {node: '>=16 || 14 >=14.17'}
2026 | dependencies:
2027 | fs.realpath: 1.0.0
2028 | minimatch: 7.4.2
2029 | minipass: 4.2.4
2030 | path-scurry: 1.6.1
2031 | dev: false
2032 |
2033 | /globals@13.20.0:
2034 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
2035 | engines: {node: '>=8'}
2036 | dependencies:
2037 | type-fest: 0.20.2
2038 | dev: true
2039 |
2040 | /globalthis@1.0.3:
2041 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
2042 | engines: {node: '>= 0.4'}
2043 | dependencies:
2044 | define-properties: 1.2.0
2045 | dev: true
2046 |
2047 | /globalyzer@0.1.0:
2048 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
2049 | dev: true
2050 |
2051 | /globby@11.1.0:
2052 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
2053 | engines: {node: '>=10'}
2054 | dependencies:
2055 | array-union: 2.1.0
2056 | dir-glob: 3.0.1
2057 | fast-glob: 3.2.12
2058 | ignore: 5.2.4
2059 | merge2: 1.4.1
2060 | slash: 3.0.0
2061 | dev: true
2062 |
2063 | /globby@13.1.3:
2064 | resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
2065 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
2066 | dependencies:
2067 | dir-glob: 3.0.1
2068 | fast-glob: 3.2.12
2069 | ignore: 5.2.4
2070 | merge2: 1.4.1
2071 | slash: 4.0.0
2072 | dev: true
2073 |
2074 | /globrex@0.1.2:
2075 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
2076 | dev: true
2077 |
2078 | /gopd@1.0.1:
2079 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
2080 | dependencies:
2081 | get-intrinsic: 1.2.0
2082 | dev: true
2083 |
2084 | /gpt-3-encoder@1.1.4:
2085 | resolution: {integrity: sha512-fSQRePV+HUAhCn7+7HL7lNIXNm6eaFWFbNLOOGtmSJ0qJycyQvj60OvRlH7mee8xAMjBDNRdMXlMwjAbMTDjkg==}
2086 | dev: false
2087 |
2088 | /graceful-fs@4.2.10:
2089 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
2090 |
2091 | /grapheme-splitter@1.0.4:
2092 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
2093 | dev: true
2094 |
2095 | /has-bigints@1.0.2:
2096 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
2097 | dev: true
2098 |
2099 | /has-flag@4.0.0:
2100 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
2101 | engines: {node: '>=8'}
2102 | dev: true
2103 |
2104 | /has-property-descriptors@1.0.0:
2105 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
2106 | dependencies:
2107 | get-intrinsic: 1.2.0
2108 | dev: true
2109 |
2110 | /has-proto@1.0.1:
2111 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
2112 | engines: {node: '>= 0.4'}
2113 | dev: true
2114 |
2115 | /has-symbols@1.0.3:
2116 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
2117 | engines: {node: '>= 0.4'}
2118 | dev: true
2119 |
2120 | /has-tostringtag@1.0.0:
2121 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
2122 | engines: {node: '>= 0.4'}
2123 | dependencies:
2124 | has-symbols: 1.0.3
2125 | dev: true
2126 |
2127 | /has-unicode@2.0.1:
2128 | resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
2129 | dev: false
2130 |
2131 | /has@1.0.3:
2132 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
2133 | engines: {node: '>= 0.4.0'}
2134 | dependencies:
2135 | function-bind: 1.1.1
2136 | dev: true
2137 |
2138 | /http-cache-semantics@4.1.1:
2139 | resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
2140 | dev: false
2141 | optional: true
2142 |
2143 | /http-proxy-agent@4.0.1:
2144 | resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
2145 | engines: {node: '>= 6'}
2146 | dependencies:
2147 | '@tootallnate/once': 1.1.2
2148 | agent-base: 6.0.2
2149 | debug: 4.3.4
2150 | transitivePeerDependencies:
2151 | - supports-color
2152 | dev: false
2153 | optional: true
2154 |
2155 | /https-proxy-agent@5.0.1:
2156 | resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
2157 | engines: {node: '>= 6'}
2158 | dependencies:
2159 | agent-base: 6.0.2
2160 | debug: 4.3.4
2161 | transitivePeerDependencies:
2162 | - supports-color
2163 | dev: false
2164 |
2165 | /humanize-ms@1.2.1:
2166 | resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
2167 | dependencies:
2168 | ms: 2.1.3
2169 | dev: false
2170 | optional: true
2171 |
2172 | /iconv-lite@0.6.3:
2173 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
2174 | engines: {node: '>=0.10.0'}
2175 | dependencies:
2176 | safer-buffer: 2.1.2
2177 | dev: false
2178 |
2179 | /ignore@5.2.4:
2180 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
2181 | engines: {node: '>= 4'}
2182 | dev: true
2183 |
2184 | /import-fresh@3.3.0:
2185 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
2186 | engines: {node: '>=6'}
2187 | dependencies:
2188 | parent-module: 1.0.1
2189 | resolve-from: 4.0.0
2190 | dev: true
2191 |
2192 | /imurmurhash@0.1.4:
2193 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
2194 | engines: {node: '>=0.8.19'}
2195 |
2196 | /indent-string@4.0.0:
2197 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
2198 | engines: {node: '>=8'}
2199 | dev: false
2200 | optional: true
2201 |
2202 | /infer-owner@1.0.4:
2203 | resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
2204 | dev: false
2205 | optional: true
2206 |
2207 | /inflight@1.0.6:
2208 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
2209 | dependencies:
2210 | once: 1.4.0
2211 | wrappy: 1.0.2
2212 |
2213 | /inherits@2.0.4:
2214 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
2215 |
2216 | /internal-slot@1.0.5:
2217 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
2218 | engines: {node: '>= 0.4'}
2219 | dependencies:
2220 | get-intrinsic: 1.2.0
2221 | has: 1.0.3
2222 | side-channel: 1.0.4
2223 | dev: true
2224 |
2225 | /ip@2.0.0:
2226 | resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
2227 | dev: false
2228 | optional: true
2229 |
2230 | /is-arguments@1.1.1:
2231 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
2232 | engines: {node: '>= 0.4'}
2233 | dependencies:
2234 | call-bind: 1.0.2
2235 | has-tostringtag: 1.0.0
2236 | dev: true
2237 |
2238 | /is-array-buffer@3.0.2:
2239 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
2240 | dependencies:
2241 | call-bind: 1.0.2
2242 | get-intrinsic: 1.2.0
2243 | is-typed-array: 1.1.10
2244 | dev: true
2245 |
2246 | /is-bigint@1.0.4:
2247 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
2248 | dependencies:
2249 | has-bigints: 1.0.2
2250 | dev: true
2251 |
2252 | /is-binary-path@2.1.0:
2253 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
2254 | engines: {node: '>=8'}
2255 | dependencies:
2256 | binary-extensions: 2.2.0
2257 | dev: true
2258 |
2259 | /is-boolean-object@1.1.2:
2260 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
2261 | engines: {node: '>= 0.4'}
2262 | dependencies:
2263 | call-bind: 1.0.2
2264 | has-tostringtag: 1.0.0
2265 | dev: true
2266 |
2267 | /is-callable@1.2.7:
2268 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
2269 | engines: {node: '>= 0.4'}
2270 | dev: true
2271 |
2272 | /is-core-module@2.11.0:
2273 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
2274 | dependencies:
2275 | has: 1.0.3
2276 | dev: true
2277 |
2278 | /is-date-object@1.0.5:
2279 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
2280 | engines: {node: '>= 0.4'}
2281 | dependencies:
2282 | has-tostringtag: 1.0.0
2283 | dev: true
2284 |
2285 | /is-docker@2.2.1:
2286 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
2287 | engines: {node: '>=8'}
2288 | hasBin: true
2289 | dev: true
2290 |
2291 | /is-extglob@2.1.1:
2292 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
2293 | engines: {node: '>=0.10.0'}
2294 | dev: true
2295 |
2296 | /is-fullwidth-code-point@3.0.0:
2297 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
2298 | engines: {node: '>=8'}
2299 | dev: false
2300 |
2301 | /is-glob@4.0.3:
2302 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
2303 | engines: {node: '>=0.10.0'}
2304 | dependencies:
2305 | is-extglob: 2.1.1
2306 | dev: true
2307 |
2308 | /is-lambda@1.0.1:
2309 | resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
2310 | dev: false
2311 | optional: true
2312 |
2313 | /is-map@2.0.2:
2314 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
2315 | dev: true
2316 |
2317 | /is-negative-zero@2.0.2:
2318 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
2319 | engines: {node: '>= 0.4'}
2320 | dev: true
2321 |
2322 | /is-number-object@1.0.7:
2323 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
2324 | engines: {node: '>= 0.4'}
2325 | dependencies:
2326 | has-tostringtag: 1.0.0
2327 | dev: true
2328 |
2329 | /is-number@7.0.0:
2330 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
2331 | engines: {node: '>=0.12.0'}
2332 | dev: true
2333 |
2334 | /is-path-inside@3.0.3:
2335 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
2336 | engines: {node: '>=8'}
2337 | dev: true
2338 |
2339 | /is-regex@1.1.4:
2340 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
2341 | engines: {node: '>= 0.4'}
2342 | dependencies:
2343 | call-bind: 1.0.2
2344 | has-tostringtag: 1.0.0
2345 | dev: true
2346 |
2347 | /is-set@2.0.2:
2348 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
2349 | dev: true
2350 |
2351 | /is-shared-array-buffer@1.0.2:
2352 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
2353 | dependencies:
2354 | call-bind: 1.0.2
2355 | dev: true
2356 |
2357 | /is-string@1.0.7:
2358 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
2359 | engines: {node: '>= 0.4'}
2360 | dependencies:
2361 | has-tostringtag: 1.0.0
2362 | dev: true
2363 |
2364 | /is-symbol@1.0.4:
2365 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
2366 | engines: {node: '>= 0.4'}
2367 | dependencies:
2368 | has-symbols: 1.0.3
2369 | dev: true
2370 |
2371 | /is-typed-array@1.1.10:
2372 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
2373 | engines: {node: '>= 0.4'}
2374 | dependencies:
2375 | available-typed-arrays: 1.0.5
2376 | call-bind: 1.0.2
2377 | for-each: 0.3.3
2378 | gopd: 1.0.1
2379 | has-tostringtag: 1.0.0
2380 | dev: true
2381 |
2382 | /is-weakmap@2.0.1:
2383 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
2384 | dev: true
2385 |
2386 | /is-weakref@1.0.2:
2387 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
2388 | dependencies:
2389 | call-bind: 1.0.2
2390 | dev: true
2391 |
2392 | /is-weakset@2.0.2:
2393 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
2394 | dependencies:
2395 | call-bind: 1.0.2
2396 | get-intrinsic: 1.2.0
2397 | dev: true
2398 |
2399 | /is-wsl@2.2.0:
2400 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
2401 | engines: {node: '>=8'}
2402 | dependencies:
2403 | is-docker: 2.2.1
2404 | dev: true
2405 |
2406 | /isarray@2.0.5:
2407 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
2408 | dev: true
2409 |
2410 | /isexe@2.0.0:
2411 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
2412 |
2413 | /js-sdsl@4.3.0:
2414 | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
2415 | dev: true
2416 |
2417 | /js-tokens@4.0.0:
2418 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
2419 |
2420 | /js-yaml@4.1.0:
2421 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
2422 | hasBin: true
2423 | dependencies:
2424 | argparse: 2.0.1
2425 | dev: true
2426 |
2427 | /json-schema-traverse@0.4.1:
2428 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
2429 | dev: true
2430 |
2431 | /json-stable-stringify-without-jsonify@1.0.1:
2432 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
2433 | dev: true
2434 |
2435 | /json5@1.0.2:
2436 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
2437 | hasBin: true
2438 | dependencies:
2439 | minimist: 1.2.8
2440 | dev: true
2441 |
2442 | /jsonpointer@5.0.1:
2443 | resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
2444 | engines: {node: '>=0.10.0'}
2445 | dev: false
2446 |
2447 | /jsx-ast-utils@3.3.3:
2448 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
2449 | engines: {node: '>=4.0'}
2450 | dependencies:
2451 | array-includes: 3.1.6
2452 | object.assign: 4.1.4
2453 | dev: true
2454 |
2455 | /langchain@0.0.22(@pinecone-database/pinecone@0.0.8):
2456 | resolution: {integrity: sha512-i6Lon2S3TK/7eHLwxsTccDrec+O1ZVdGfndwpzCRVli9X4K7sQ05h04T6FAOLREb+sspmGrZy407ZXS4CyXhRw==}
2457 | peerDependencies:
2458 | '@dqbd/tiktoken': ^0.4.0
2459 | '@huggingface/inference': ^1.5.1
2460 | '@pinecone-database/pinecone': ^0.0.8
2461 | cheerio: ^1.0.0-rc.12
2462 | chromadb: ^1.3.0
2463 | cohere-ai: ^5.0.2
2464 | hnswlib-node: ^1.3.0
2465 | serpapi: ^1.1.1
2466 | srt-parser-2: ^1.2.2
2467 | peerDependenciesMeta:
2468 | '@dqbd/tiktoken':
2469 | optional: true
2470 | '@huggingface/inference':
2471 | optional: true
2472 | '@pinecone-database/pinecone':
2473 | optional: true
2474 | cheerio:
2475 | optional: true
2476 | chromadb:
2477 | optional: true
2478 | cohere-ai:
2479 | optional: true
2480 | hnswlib-node:
2481 | optional: true
2482 | serpapi:
2483 | optional: true
2484 | srt-parser-2:
2485 | optional: true
2486 | dependencies:
2487 | '@pinecone-database/pinecone': 0.0.8
2488 | browser-or-node: 2.1.1
2489 | d3-dsv: 3.0.1
2490 | deepcopy: 2.1.0
2491 | eventsource-parser: 0.1.0
2492 | exponential-backoff: 3.1.1
2493 | expr-eval: 2.0.2
2494 | gpt-3-encoder: 1.1.4
2495 | jsonpointer: 5.0.1
2496 | openai: 3.2.1
2497 | p-queue: 7.3.4
2498 | pdf-parse: 1.1.1
2499 | sqlite3: 5.1.4
2500 | uuid: 9.0.0
2501 | yaml: 2.2.1
2502 | transitivePeerDependencies:
2503 | - bluebird
2504 | - debug
2505 | - encoding
2506 | - supports-color
2507 | dev: false
2508 |
2509 | /language-subtag-registry@0.3.22:
2510 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
2511 | dev: true
2512 |
2513 | /language-tags@1.0.5:
2514 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
2515 | dependencies:
2516 | language-subtag-registry: 0.3.22
2517 | dev: true
2518 |
2519 | /levn@0.4.1:
2520 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
2521 | engines: {node: '>= 0.8.0'}
2522 | dependencies:
2523 | prelude-ls: 1.2.1
2524 | type-check: 0.4.0
2525 | dev: true
2526 |
2527 | /lilconfig@2.1.0:
2528 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
2529 | engines: {node: '>=10'}
2530 | dev: true
2531 |
2532 | /locate-path@6.0.0:
2533 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
2534 | engines: {node: '>=10'}
2535 | dependencies:
2536 | p-locate: 5.0.0
2537 | dev: true
2538 |
2539 | /lodash.merge@4.6.2:
2540 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
2541 | dev: true
2542 |
2543 | /loose-envify@1.4.0:
2544 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
2545 | hasBin: true
2546 | dependencies:
2547 | js-tokens: 4.0.0
2548 |
2549 | /lru-cache@6.0.0:
2550 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
2551 | engines: {node: '>=10'}
2552 | dependencies:
2553 | yallist: 4.0.0
2554 |
2555 | /lru-cache@7.18.3:
2556 | resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
2557 | engines: {node: '>=12'}
2558 | dev: false
2559 |
2560 | /make-dir@3.1.0:
2561 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
2562 | engines: {node: '>=8'}
2563 | dependencies:
2564 | semver: 6.3.0
2565 | dev: false
2566 |
2567 | /make-fetch-happen@9.1.0:
2568 | resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==}
2569 | engines: {node: '>= 10'}
2570 | dependencies:
2571 | agentkeepalive: 4.3.0
2572 | cacache: 15.3.0
2573 | http-cache-semantics: 4.1.1
2574 | http-proxy-agent: 4.0.1
2575 | https-proxy-agent: 5.0.1
2576 | is-lambda: 1.0.1
2577 | lru-cache: 6.0.0
2578 | minipass: 3.3.6
2579 | minipass-collect: 1.0.2
2580 | minipass-fetch: 1.4.1
2581 | minipass-flush: 1.0.5
2582 | minipass-pipeline: 1.2.4
2583 | negotiator: 0.6.3
2584 | promise-retry: 2.0.1
2585 | socks-proxy-agent: 6.2.1
2586 | ssri: 8.0.1
2587 | transitivePeerDependencies:
2588 | - bluebird
2589 | - supports-color
2590 | dev: false
2591 | optional: true
2592 |
2593 | /merge2@1.4.1:
2594 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
2595 | engines: {node: '>= 8'}
2596 | dev: true
2597 |
2598 | /micromatch@4.0.5:
2599 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
2600 | engines: {node: '>=8.6'}
2601 | dependencies:
2602 | braces: 3.0.2
2603 | picomatch: 2.3.1
2604 | dev: true
2605 |
2606 | /mime-db@1.52.0:
2607 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
2608 | engines: {node: '>= 0.6'}
2609 | dev: false
2610 |
2611 | /mime-types@2.1.35:
2612 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
2613 | engines: {node: '>= 0.6'}
2614 | dependencies:
2615 | mime-db: 1.52.0
2616 | dev: false
2617 |
2618 | /minimatch@3.1.2:
2619 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2620 | dependencies:
2621 | brace-expansion: 1.1.11
2622 |
2623 | /minimatch@7.4.2:
2624 | resolution: {integrity: sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==}
2625 | engines: {node: '>=10'}
2626 | dependencies:
2627 | brace-expansion: 2.0.1
2628 | dev: false
2629 |
2630 | /minimist@1.2.8:
2631 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
2632 | dev: true
2633 |
2634 | /minipass-collect@1.0.2:
2635 | resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
2636 | engines: {node: '>= 8'}
2637 | dependencies:
2638 | minipass: 3.3.6
2639 | dev: false
2640 | optional: true
2641 |
2642 | /minipass-fetch@1.4.1:
2643 | resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
2644 | engines: {node: '>=8'}
2645 | dependencies:
2646 | minipass: 3.3.6
2647 | minipass-sized: 1.0.3
2648 | minizlib: 2.1.2
2649 | optionalDependencies:
2650 | encoding: 0.1.13
2651 | dev: false
2652 | optional: true
2653 |
2654 | /minipass-flush@1.0.5:
2655 | resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
2656 | engines: {node: '>= 8'}
2657 | dependencies:
2658 | minipass: 3.3.6
2659 | dev: false
2660 | optional: true
2661 |
2662 | /minipass-pipeline@1.2.4:
2663 | resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
2664 | engines: {node: '>=8'}
2665 | dependencies:
2666 | minipass: 3.3.6
2667 | dev: false
2668 | optional: true
2669 |
2670 | /minipass-sized@1.0.3:
2671 | resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
2672 | engines: {node: '>=8'}
2673 | dependencies:
2674 | minipass: 3.3.6
2675 | dev: false
2676 | optional: true
2677 |
2678 | /minipass@3.3.6:
2679 | resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
2680 | engines: {node: '>=8'}
2681 | dependencies:
2682 | yallist: 4.0.0
2683 | dev: false
2684 |
2685 | /minipass@4.2.4:
2686 | resolution: {integrity: sha512-lwycX3cBMTvcejsHITUgYj6Gy6A7Nh4Q6h9NP4sTHY1ccJlC7yKzDmiShEHsJ16Jf1nKGDEaiHxiltsJEvk0nQ==}
2687 | engines: {node: '>=8'}
2688 | dev: false
2689 |
2690 | /minizlib@2.1.2:
2691 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
2692 | engines: {node: '>= 8'}
2693 | dependencies:
2694 | minipass: 3.3.6
2695 | yallist: 4.0.0
2696 | dev: false
2697 |
2698 | /mkdirp@1.0.4:
2699 | resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
2700 | engines: {node: '>=10'}
2701 | hasBin: true
2702 | dev: false
2703 |
2704 | /ms@2.1.2:
2705 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2706 |
2707 | /ms@2.1.3:
2708 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
2709 |
2710 | /nanoid@3.3.4:
2711 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
2712 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2713 | hasBin: true
2714 |
2715 | /natural-compare-lite@1.4.0:
2716 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
2717 | dev: true
2718 |
2719 | /natural-compare@1.4.0:
2720 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2721 | dev: true
2722 |
2723 | /negotiator@0.6.3:
2724 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
2725 | engines: {node: '>= 0.6'}
2726 | dev: false
2727 | optional: true
2728 |
2729 | /next@13.2.3(react-dom@18.2.0)(react@18.2.0):
2730 | resolution: {integrity: sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==}
2731 | engines: {node: '>=14.6.0'}
2732 | hasBin: true
2733 | peerDependencies:
2734 | '@opentelemetry/api': ^1.4.0
2735 | fibers: '>= 3.1.0'
2736 | node-sass: ^6.0.0 || ^7.0.0
2737 | react: ^18.2.0
2738 | react-dom: ^18.2.0
2739 | sass: ^1.3.0
2740 | peerDependenciesMeta:
2741 | '@opentelemetry/api':
2742 | optional: true
2743 | fibers:
2744 | optional: true
2745 | node-sass:
2746 | optional: true
2747 | sass:
2748 | optional: true
2749 | dependencies:
2750 | '@next/env': 13.2.3
2751 | '@swc/helpers': 0.4.14
2752 | caniuse-lite: 1.0.30001460
2753 | postcss: 8.4.14
2754 | react: 18.2.0
2755 | react-dom: 18.2.0(react@18.2.0)
2756 | styled-jsx: 5.1.1(react@18.2.0)
2757 | optionalDependencies:
2758 | '@next/swc-android-arm-eabi': 13.2.3
2759 | '@next/swc-android-arm64': 13.2.3
2760 | '@next/swc-darwin-arm64': 13.2.3
2761 | '@next/swc-darwin-x64': 13.2.3
2762 | '@next/swc-freebsd-x64': 13.2.3
2763 | '@next/swc-linux-arm-gnueabihf': 13.2.3
2764 | '@next/swc-linux-arm64-gnu': 13.2.3
2765 | '@next/swc-linux-arm64-musl': 13.2.3
2766 | '@next/swc-linux-x64-gnu': 13.2.3
2767 | '@next/swc-linux-x64-musl': 13.2.3
2768 | '@next/swc-win32-arm64-msvc': 13.2.3
2769 | '@next/swc-win32-ia32-msvc': 13.2.3
2770 | '@next/swc-win32-x64-msvc': 13.2.3
2771 | transitivePeerDependencies:
2772 | - '@babel/core'
2773 | - babel-plugin-macros
2774 | dev: false
2775 |
2776 | /node-addon-api@4.3.0:
2777 | resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==}
2778 | dev: false
2779 |
2780 | /node-ensure@0.0.0:
2781 | resolution: {integrity: sha512-DRI60hzo2oKN1ma0ckc6nQWlHU69RH6xN0sjQTjMpChPfTYvKZdcQFfdYK2RWbJcKyUizSIy/l8OTGxMAM1QDw==}
2782 | dev: false
2783 |
2784 | /node-fetch@2.6.9:
2785 | resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
2786 | engines: {node: 4.x || >=6.0.0}
2787 | peerDependencies:
2788 | encoding: ^0.1.0
2789 | peerDependenciesMeta:
2790 | encoding:
2791 | optional: true
2792 | dependencies:
2793 | whatwg-url: 5.0.0
2794 | dev: false
2795 |
2796 | /node-gyp@8.4.1:
2797 | resolution: {integrity: sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==}
2798 | engines: {node: '>= 10.12.0'}
2799 | hasBin: true
2800 | requiresBuild: true
2801 | dependencies:
2802 | env-paths: 2.2.1
2803 | glob: 7.2.3
2804 | graceful-fs: 4.2.10
2805 | make-fetch-happen: 9.1.0
2806 | nopt: 5.0.0
2807 | npmlog: 6.0.2
2808 | rimraf: 3.0.2
2809 | semver: 7.3.8
2810 | tar: 6.1.13
2811 | which: 2.0.2
2812 | transitivePeerDependencies:
2813 | - bluebird
2814 | - supports-color
2815 | dev: false
2816 | optional: true
2817 |
2818 | /node-releases@2.0.10:
2819 | resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
2820 | dev: true
2821 |
2822 | /nopt@5.0.0:
2823 | resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
2824 | engines: {node: '>=6'}
2825 | hasBin: true
2826 | dependencies:
2827 | abbrev: 1.1.1
2828 | dev: false
2829 |
2830 | /normalize-path@3.0.0:
2831 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2832 | engines: {node: '>=0.10.0'}
2833 | dev: true
2834 |
2835 | /normalize-range@0.1.2:
2836 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
2837 | engines: {node: '>=0.10.0'}
2838 | dev: true
2839 |
2840 | /npmlog@5.0.1:
2841 | resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
2842 | dependencies:
2843 | are-we-there-yet: 2.0.0
2844 | console-control-strings: 1.1.0
2845 | gauge: 3.0.2
2846 | set-blocking: 2.0.0
2847 | dev: false
2848 |
2849 | /npmlog@6.0.2:
2850 | resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
2851 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
2852 | dependencies:
2853 | are-we-there-yet: 3.0.1
2854 | console-control-strings: 1.1.0
2855 | gauge: 4.0.4
2856 | set-blocking: 2.0.0
2857 | dev: false
2858 | optional: true
2859 |
2860 | /object-assign@4.1.1:
2861 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2862 | engines: {node: '>=0.10.0'}
2863 |
2864 | /object-hash@3.0.0:
2865 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
2866 | engines: {node: '>= 6'}
2867 | dev: true
2868 |
2869 | /object-inspect@1.12.3:
2870 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
2871 | dev: true
2872 |
2873 | /object-is@1.1.5:
2874 | resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
2875 | engines: {node: '>= 0.4'}
2876 | dependencies:
2877 | call-bind: 1.0.2
2878 | define-properties: 1.2.0
2879 | dev: true
2880 |
2881 | /object-keys@1.1.1:
2882 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
2883 | engines: {node: '>= 0.4'}
2884 | dev: true
2885 |
2886 | /object.assign@4.1.4:
2887 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
2888 | engines: {node: '>= 0.4'}
2889 | dependencies:
2890 | call-bind: 1.0.2
2891 | define-properties: 1.2.0
2892 | has-symbols: 1.0.3
2893 | object-keys: 1.1.1
2894 | dev: true
2895 |
2896 | /object.entries@1.1.6:
2897 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
2898 | engines: {node: '>= 0.4'}
2899 | dependencies:
2900 | call-bind: 1.0.2
2901 | define-properties: 1.2.0
2902 | es-abstract: 1.21.1
2903 | dev: true
2904 |
2905 | /object.fromentries@2.0.6:
2906 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
2907 | engines: {node: '>= 0.4'}
2908 | dependencies:
2909 | call-bind: 1.0.2
2910 | define-properties: 1.2.0
2911 | es-abstract: 1.21.1
2912 | dev: true
2913 |
2914 | /object.hasown@1.1.2:
2915 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
2916 | dependencies:
2917 | define-properties: 1.2.0
2918 | es-abstract: 1.21.1
2919 | dev: true
2920 |
2921 | /object.values@1.1.6:
2922 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
2923 | engines: {node: '>= 0.4'}
2924 | dependencies:
2925 | call-bind: 1.0.2
2926 | define-properties: 1.2.0
2927 | es-abstract: 1.21.1
2928 | dev: true
2929 |
2930 | /once@1.4.0:
2931 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2932 | dependencies:
2933 | wrappy: 1.0.2
2934 |
2935 | /open@8.4.2:
2936 | resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
2937 | engines: {node: '>=12'}
2938 | dependencies:
2939 | define-lazy-prop: 2.0.0
2940 | is-docker: 2.2.1
2941 | is-wsl: 2.2.0
2942 | dev: true
2943 |
2944 | /openai@3.2.1:
2945 | resolution: {integrity: sha512-762C9BNlJPbjjlWZi4WYK9iM2tAVAv0uUp1UmI34vb0CN5T2mjB/qM6RYBmNKMh/dN9fC+bxqPwWJZUTWW052A==}
2946 | dependencies:
2947 | axios: 0.26.1
2948 | form-data: 4.0.0
2949 | transitivePeerDependencies:
2950 | - debug
2951 | dev: false
2952 |
2953 | /optionator@0.9.1:
2954 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
2955 | engines: {node: '>= 0.8.0'}
2956 | dependencies:
2957 | deep-is: 0.1.4
2958 | fast-levenshtein: 2.0.6
2959 | levn: 0.4.1
2960 | prelude-ls: 1.2.1
2961 | type-check: 0.4.0
2962 | word-wrap: 1.2.3
2963 | dev: true
2964 |
2965 | /p-limit@3.1.0:
2966 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2967 | engines: {node: '>=10'}
2968 | dependencies:
2969 | yocto-queue: 0.1.0
2970 | dev: true
2971 |
2972 | /p-locate@5.0.0:
2973 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2974 | engines: {node: '>=10'}
2975 | dependencies:
2976 | p-limit: 3.1.0
2977 | dev: true
2978 |
2979 | /p-map@4.0.0:
2980 | resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
2981 | engines: {node: '>=10'}
2982 | dependencies:
2983 | aggregate-error: 3.1.0
2984 | dev: false
2985 | optional: true
2986 |
2987 | /p-queue@7.3.4:
2988 | resolution: {integrity: sha512-esox8CWt0j9EZECFvkFl2WNPat8LN4t7WWeXq73D9ha0V96qPRufApZi4ZhPwXAln1uVVal429HVVKPa2X0yQg==}
2989 | engines: {node: '>=12'}
2990 | dependencies:
2991 | eventemitter3: 4.0.7
2992 | p-timeout: 5.1.0
2993 | dev: false
2994 |
2995 | /p-timeout@5.1.0:
2996 | resolution: {integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==}
2997 | engines: {node: '>=12'}
2998 | dev: false
2999 |
3000 | /parent-module@1.0.1:
3001 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
3002 | engines: {node: '>=6'}
3003 | dependencies:
3004 | callsites: 3.1.0
3005 | dev: true
3006 |
3007 | /path-exists@4.0.0:
3008 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
3009 | engines: {node: '>=8'}
3010 | dev: true
3011 |
3012 | /path-is-absolute@1.0.1:
3013 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
3014 | engines: {node: '>=0.10.0'}
3015 |
3016 | /path-key@3.1.1:
3017 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
3018 | engines: {node: '>=8'}
3019 | dev: true
3020 |
3021 | /path-parse@1.0.7:
3022 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
3023 | dev: true
3024 |
3025 | /path-scurry@1.6.1:
3026 | resolution: {integrity: sha512-OW+5s+7cw6253Q4E+8qQ/u1fVvcJQCJo/VFD8pje+dbJCF1n5ZRMV2AEHbGp+5Q7jxQIYJxkHopnj6nzdGeZLA==}
3027 | engines: {node: '>=14'}
3028 | dependencies:
3029 | lru-cache: 7.18.3
3030 | minipass: 4.2.4
3031 | dev: false
3032 |
3033 | /path-type@4.0.0:
3034 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
3035 | engines: {node: '>=8'}
3036 | dev: true
3037 |
3038 | /pdf-parse@1.1.1:
3039 | resolution: {integrity: sha512-v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A==}
3040 | engines: {node: '>=6.8.1'}
3041 | dependencies:
3042 | debug: 3.2.7
3043 | node-ensure: 0.0.0
3044 | transitivePeerDependencies:
3045 | - supports-color
3046 | dev: false
3047 |
3048 | /picocolors@1.0.0:
3049 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
3050 |
3051 | /picomatch@2.3.1:
3052 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
3053 | engines: {node: '>=8.6'}
3054 | dev: true
3055 |
3056 | /pify@2.3.0:
3057 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
3058 | engines: {node: '>=0.10.0'}
3059 | dev: true
3060 |
3061 | /postcss-import@14.1.0(postcss@8.4.21):
3062 | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
3063 | engines: {node: '>=10.0.0'}
3064 | peerDependencies:
3065 | postcss: ^8.0.0
3066 | dependencies:
3067 | postcss: 8.4.21
3068 | postcss-value-parser: 4.2.0
3069 | read-cache: 1.0.0
3070 | resolve: 1.22.1
3071 | dev: true
3072 |
3073 | /postcss-js@4.0.1(postcss@8.4.21):
3074 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
3075 | engines: {node: ^12 || ^14 || >= 16}
3076 | peerDependencies:
3077 | postcss: ^8.4.21
3078 | dependencies:
3079 | camelcase-css: 2.0.1
3080 | postcss: 8.4.21
3081 | dev: true
3082 |
3083 | /postcss-load-config@3.1.4(postcss@8.4.21):
3084 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
3085 | engines: {node: '>= 10'}
3086 | peerDependencies:
3087 | postcss: '>=8.0.9'
3088 | ts-node: '>=9.0.0'
3089 | peerDependenciesMeta:
3090 | postcss:
3091 | optional: true
3092 | ts-node:
3093 | optional: true
3094 | dependencies:
3095 | lilconfig: 2.1.0
3096 | postcss: 8.4.21
3097 | yaml: 1.10.2
3098 | dev: true
3099 |
3100 | /postcss-nested@6.0.0(postcss@8.4.21):
3101 | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
3102 | engines: {node: '>=12.0'}
3103 | peerDependencies:
3104 | postcss: ^8.2.14
3105 | dependencies:
3106 | postcss: 8.4.21
3107 | postcss-selector-parser: 6.0.11
3108 | dev: true
3109 |
3110 | /postcss-selector-parser@6.0.11:
3111 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
3112 | engines: {node: '>=4'}
3113 | dependencies:
3114 | cssesc: 3.0.0
3115 | util-deprecate: 1.0.2
3116 | dev: true
3117 |
3118 | /postcss-value-parser@4.2.0:
3119 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
3120 | dev: true
3121 |
3122 | /postcss@8.4.14:
3123 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
3124 | engines: {node: ^10 || ^12 || >=14}
3125 | dependencies:
3126 | nanoid: 3.3.4
3127 | picocolors: 1.0.0
3128 | source-map-js: 1.0.2
3129 | dev: false
3130 |
3131 | /postcss@8.4.21:
3132 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
3133 | engines: {node: ^10 || ^12 || >=14}
3134 | dependencies:
3135 | nanoid: 3.3.4
3136 | picocolors: 1.0.0
3137 | source-map-js: 1.0.2
3138 | dev: true
3139 |
3140 | /prelude-ls@1.2.1:
3141 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
3142 | engines: {node: '>= 0.8.0'}
3143 | dev: true
3144 |
3145 | /prettier@2.8.4:
3146 | resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==}
3147 | engines: {node: '>=10.13.0'}
3148 | hasBin: true
3149 | dev: true
3150 |
3151 | /promise-inflight@1.0.1:
3152 | resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
3153 | peerDependencies:
3154 | bluebird: '*'
3155 | peerDependenciesMeta:
3156 | bluebird:
3157 | optional: true
3158 | dev: false
3159 | optional: true
3160 |
3161 | /promise-retry@2.0.1:
3162 | resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
3163 | engines: {node: '>=10'}
3164 | dependencies:
3165 | err-code: 2.0.3
3166 | retry: 0.12.0
3167 | dev: false
3168 | optional: true
3169 |
3170 | /prop-types@15.8.1:
3171 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
3172 | dependencies:
3173 | loose-envify: 1.4.0
3174 | object-assign: 4.1.1
3175 | react-is: 16.13.1
3176 | dev: true
3177 |
3178 | /punycode@2.3.0:
3179 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
3180 | engines: {node: '>=6'}
3181 | dev: true
3182 |
3183 | /queue-microtask@1.2.3:
3184 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
3185 | dev: true
3186 |
3187 | /quick-lru@5.1.1:
3188 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
3189 | engines: {node: '>=10'}
3190 | dev: true
3191 |
3192 | /react-dom@18.2.0(react@18.2.0):
3193 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
3194 | peerDependencies:
3195 | react: ^18.2.0
3196 | dependencies:
3197 | loose-envify: 1.4.0
3198 | react: 18.2.0
3199 | scheduler: 0.23.0
3200 | dev: false
3201 |
3202 | /react-is@16.13.1:
3203 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
3204 | dev: true
3205 |
3206 | /react@18.2.0:
3207 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
3208 | engines: {node: '>=0.10.0'}
3209 | dependencies:
3210 | loose-envify: 1.4.0
3211 | dev: false
3212 |
3213 | /read-cache@1.0.0:
3214 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
3215 | dependencies:
3216 | pify: 2.3.0
3217 | dev: true
3218 |
3219 | /readable-stream@3.6.1:
3220 | resolution: {integrity: sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==}
3221 | engines: {node: '>= 6'}
3222 | dependencies:
3223 | inherits: 2.0.4
3224 | string_decoder: 1.3.0
3225 | util-deprecate: 1.0.2
3226 | dev: false
3227 |
3228 | /readdirp@3.6.0:
3229 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
3230 | engines: {node: '>=8.10.0'}
3231 | dependencies:
3232 | picomatch: 2.3.1
3233 | dev: true
3234 |
3235 | /regenerator-runtime@0.13.11:
3236 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
3237 | dev: true
3238 |
3239 | /regexp.prototype.flags@1.4.3:
3240 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
3241 | engines: {node: '>= 0.4'}
3242 | dependencies:
3243 | call-bind: 1.0.2
3244 | define-properties: 1.2.0
3245 | functions-have-names: 1.2.3
3246 | dev: true
3247 |
3248 | /regexpp@3.2.0:
3249 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
3250 | engines: {node: '>=8'}
3251 | dev: true
3252 |
3253 | /resolve-from@4.0.0:
3254 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
3255 | engines: {node: '>=4'}
3256 | dev: true
3257 |
3258 | /resolve@1.22.1:
3259 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
3260 | hasBin: true
3261 | dependencies:
3262 | is-core-module: 2.11.0
3263 | path-parse: 1.0.7
3264 | supports-preserve-symlinks-flag: 1.0.0
3265 | dev: true
3266 |
3267 | /resolve@2.0.0-next.4:
3268 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
3269 | hasBin: true
3270 | dependencies:
3271 | is-core-module: 2.11.0
3272 | path-parse: 1.0.7
3273 | supports-preserve-symlinks-flag: 1.0.0
3274 | dev: true
3275 |
3276 | /retry@0.12.0:
3277 | resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
3278 | engines: {node: '>= 4'}
3279 | dev: false
3280 | optional: true
3281 |
3282 | /reusify@1.0.4:
3283 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
3284 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
3285 | dev: true
3286 |
3287 | /rimraf@3.0.2:
3288 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
3289 | hasBin: true
3290 | dependencies:
3291 | glob: 7.2.3
3292 |
3293 | /run-parallel@1.2.0:
3294 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
3295 | dependencies:
3296 | queue-microtask: 1.2.3
3297 | dev: true
3298 |
3299 | /rw@1.3.3:
3300 | resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
3301 | dev: false
3302 |
3303 | /safe-buffer@5.2.1:
3304 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
3305 | dev: false
3306 |
3307 | /safe-regex-test@1.0.0:
3308 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
3309 | dependencies:
3310 | call-bind: 1.0.2
3311 | get-intrinsic: 1.2.0
3312 | is-regex: 1.1.4
3313 | dev: true
3314 |
3315 | /safer-buffer@2.1.2:
3316 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
3317 | dev: false
3318 |
3319 | /scheduler@0.23.0:
3320 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
3321 | dependencies:
3322 | loose-envify: 1.4.0
3323 | dev: false
3324 |
3325 | /semver@6.3.0:
3326 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
3327 | hasBin: true
3328 |
3329 | /semver@7.3.8:
3330 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
3331 | engines: {node: '>=10'}
3332 | hasBin: true
3333 | dependencies:
3334 | lru-cache: 6.0.0
3335 |
3336 | /set-blocking@2.0.0:
3337 | resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
3338 | dev: false
3339 |
3340 | /shebang-command@2.0.0:
3341 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
3342 | engines: {node: '>=8'}
3343 | dependencies:
3344 | shebang-regex: 3.0.0
3345 | dev: true
3346 |
3347 | /shebang-regex@3.0.0:
3348 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
3349 | engines: {node: '>=8'}
3350 | dev: true
3351 |
3352 | /side-channel@1.0.4:
3353 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
3354 | dependencies:
3355 | call-bind: 1.0.2
3356 | get-intrinsic: 1.2.0
3357 | object-inspect: 1.12.3
3358 | dev: true
3359 |
3360 | /signal-exit@3.0.7:
3361 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
3362 | dev: false
3363 |
3364 | /slash@3.0.0:
3365 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
3366 | engines: {node: '>=8'}
3367 | dev: true
3368 |
3369 | /slash@4.0.0:
3370 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
3371 | engines: {node: '>=12'}
3372 | dev: true
3373 |
3374 | /smart-buffer@4.2.0:
3375 | resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
3376 | engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
3377 | dev: false
3378 | optional: true
3379 |
3380 | /socks-proxy-agent@6.2.1:
3381 | resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==}
3382 | engines: {node: '>= 10'}
3383 | dependencies:
3384 | agent-base: 6.0.2
3385 | debug: 4.3.4
3386 | socks: 2.7.1
3387 | transitivePeerDependencies:
3388 | - supports-color
3389 | dev: false
3390 | optional: true
3391 |
3392 | /socks@2.7.1:
3393 | resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
3394 | engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
3395 | dependencies:
3396 | ip: 2.0.0
3397 | smart-buffer: 4.2.0
3398 | dev: false
3399 | optional: true
3400 |
3401 | /source-map-js@1.0.2:
3402 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
3403 | engines: {node: '>=0.10.0'}
3404 |
3405 | /source-map-support@0.5.21:
3406 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
3407 | dependencies:
3408 | buffer-from: 1.1.2
3409 | source-map: 0.6.1
3410 | dev: true
3411 |
3412 | /source-map@0.6.1:
3413 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
3414 | engines: {node: '>=0.10.0'}
3415 | dev: true
3416 |
3417 | /sqlite3@5.1.4:
3418 | resolution: {integrity: sha512-i0UlWAzPlzX3B5XP2cYuhWQJsTtlMD6obOa1PgeEQ4DHEXUuyJkgv50I3isqZAP5oFc2T8OFvakmDh2W6I+YpA==}
3419 | requiresBuild: true
3420 | peerDependenciesMeta:
3421 | node-gyp:
3422 | optional: true
3423 | dependencies:
3424 | '@mapbox/node-pre-gyp': 1.0.10
3425 | node-addon-api: 4.3.0
3426 | tar: 6.1.13
3427 | optionalDependencies:
3428 | node-gyp: 8.4.1
3429 | transitivePeerDependencies:
3430 | - bluebird
3431 | - encoding
3432 | - supports-color
3433 | dev: false
3434 |
3435 | /ssri@8.0.1:
3436 | resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
3437 | engines: {node: '>= 8'}
3438 | dependencies:
3439 | minipass: 3.3.6
3440 | dev: false
3441 | optional: true
3442 |
3443 | /stop-iteration-iterator@1.0.0:
3444 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
3445 | engines: {node: '>= 0.4'}
3446 | dependencies:
3447 | internal-slot: 1.0.5
3448 | dev: true
3449 |
3450 | /string-width@4.2.3:
3451 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
3452 | engines: {node: '>=8'}
3453 | dependencies:
3454 | emoji-regex: 8.0.0
3455 | is-fullwidth-code-point: 3.0.0
3456 | strip-ansi: 6.0.1
3457 | dev: false
3458 |
3459 | /string.prototype.matchall@4.0.8:
3460 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
3461 | dependencies:
3462 | call-bind: 1.0.2
3463 | define-properties: 1.2.0
3464 | es-abstract: 1.21.1
3465 | get-intrinsic: 1.2.0
3466 | has-symbols: 1.0.3
3467 | internal-slot: 1.0.5
3468 | regexp.prototype.flags: 1.4.3
3469 | side-channel: 1.0.4
3470 | dev: true
3471 |
3472 | /string.prototype.trimend@1.0.6:
3473 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
3474 | dependencies:
3475 | call-bind: 1.0.2
3476 | define-properties: 1.2.0
3477 | es-abstract: 1.21.1
3478 | dev: true
3479 |
3480 | /string.prototype.trimstart@1.0.6:
3481 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
3482 | dependencies:
3483 | call-bind: 1.0.2
3484 | define-properties: 1.2.0
3485 | es-abstract: 1.21.1
3486 | dev: true
3487 |
3488 | /string_decoder@1.3.0:
3489 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
3490 | dependencies:
3491 | safe-buffer: 5.2.1
3492 | dev: false
3493 |
3494 | /strip-ansi@6.0.1:
3495 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
3496 | engines: {node: '>=8'}
3497 | dependencies:
3498 | ansi-regex: 5.0.1
3499 |
3500 | /strip-bom@3.0.0:
3501 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
3502 | engines: {node: '>=4'}
3503 | dev: true
3504 |
3505 | /strip-json-comments@3.1.1:
3506 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
3507 | engines: {node: '>=8'}
3508 | dev: true
3509 |
3510 | /styled-jsx@5.1.1(react@18.2.0):
3511 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
3512 | engines: {node: '>= 12.0.0'}
3513 | peerDependencies:
3514 | '@babel/core': '*'
3515 | babel-plugin-macros: '*'
3516 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
3517 | peerDependenciesMeta:
3518 | '@babel/core':
3519 | optional: true
3520 | babel-plugin-macros:
3521 | optional: true
3522 | dependencies:
3523 | client-only: 0.0.1
3524 | react: 18.2.0
3525 | dev: false
3526 |
3527 | /supports-color@7.2.0:
3528 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
3529 | engines: {node: '>=8'}
3530 | dependencies:
3531 | has-flag: 4.0.0
3532 | dev: true
3533 |
3534 | /supports-preserve-symlinks-flag@1.0.0:
3535 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
3536 | engines: {node: '>= 0.4'}
3537 | dev: true
3538 |
3539 | /synckit@0.8.5:
3540 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
3541 | engines: {node: ^14.18.0 || >=16.0.0}
3542 | dependencies:
3543 | '@pkgr/utils': 2.3.1
3544 | tslib: 2.5.0
3545 | dev: true
3546 |
3547 | /tailwindcss@3.2.7(postcss@8.4.21):
3548 | resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==}
3549 | engines: {node: '>=12.13.0'}
3550 | hasBin: true
3551 | peerDependencies:
3552 | postcss: ^8.0.9
3553 | dependencies:
3554 | arg: 5.0.2
3555 | chokidar: 3.5.3
3556 | color-name: 1.1.4
3557 | detective: 5.2.1
3558 | didyoumean: 1.2.2
3559 | dlv: 1.1.3
3560 | fast-glob: 3.2.12
3561 | glob-parent: 6.0.2
3562 | is-glob: 4.0.3
3563 | lilconfig: 2.1.0
3564 | micromatch: 4.0.5
3565 | normalize-path: 3.0.0
3566 | object-hash: 3.0.0
3567 | picocolors: 1.0.0
3568 | postcss: 8.4.21
3569 | postcss-import: 14.1.0(postcss@8.4.21)
3570 | postcss-js: 4.0.1(postcss@8.4.21)
3571 | postcss-load-config: 3.1.4(postcss@8.4.21)
3572 | postcss-nested: 6.0.0(postcss@8.4.21)
3573 | postcss-selector-parser: 6.0.11
3574 | postcss-value-parser: 4.2.0
3575 | quick-lru: 5.1.1
3576 | resolve: 1.22.1
3577 | transitivePeerDependencies:
3578 | - ts-node
3579 | dev: true
3580 |
3581 | /tapable@2.2.1:
3582 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
3583 | engines: {node: '>=6'}
3584 | dev: true
3585 |
3586 | /tar@6.1.13:
3587 | resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
3588 | engines: {node: '>=10'}
3589 | dependencies:
3590 | chownr: 2.0.0
3591 | fs-minipass: 2.1.0
3592 | minipass: 4.2.4
3593 | minizlib: 2.1.2
3594 | mkdirp: 1.0.4
3595 | yallist: 4.0.0
3596 | dev: false
3597 |
3598 | /text-table@0.2.0:
3599 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
3600 | dev: true
3601 |
3602 | /tiny-glob@0.2.9:
3603 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
3604 | dependencies:
3605 | globalyzer: 0.1.0
3606 | globrex: 0.1.2
3607 | dev: true
3608 |
3609 | /to-regex-range@5.0.1:
3610 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
3611 | engines: {node: '>=8.0'}
3612 | dependencies:
3613 | is-number: 7.0.0
3614 | dev: true
3615 |
3616 | /tr46@0.0.3:
3617 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
3618 | dev: false
3619 |
3620 | /tsconfig-paths@3.14.2:
3621 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
3622 | dependencies:
3623 | '@types/json5': 0.0.29
3624 | json5: 1.0.2
3625 | minimist: 1.2.8
3626 | strip-bom: 3.0.0
3627 | dev: true
3628 |
3629 | /tslib@1.14.1:
3630 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
3631 | dev: true
3632 |
3633 | /tslib@2.5.0:
3634 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
3635 |
3636 | /tsutils@3.21.0(typescript@4.9.5):
3637 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
3638 | engines: {node: '>= 6'}
3639 | peerDependencies:
3640 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
3641 | dependencies:
3642 | tslib: 1.14.1
3643 | typescript: 4.9.5
3644 | dev: true
3645 |
3646 | /tsx@3.12.3:
3647 | resolution: {integrity: sha512-Wc5BFH1xccYTXaQob+lEcimkcb/Pq+0en2s+ruiX0VEIC80nV7/0s7XRahx8NnsoCnpCVUPz8wrqVSPi760LkA==}
3648 | hasBin: true
3649 | dependencies:
3650 | '@esbuild-kit/cjs-loader': 2.4.2
3651 | '@esbuild-kit/core-utils': 3.1.0
3652 | '@esbuild-kit/esm-loader': 2.5.5
3653 | optionalDependencies:
3654 | fsevents: 2.3.2
3655 | dev: true
3656 |
3657 | /type-check@0.4.0:
3658 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
3659 | engines: {node: '>= 0.8.0'}
3660 | dependencies:
3661 | prelude-ls: 1.2.1
3662 | dev: true
3663 |
3664 | /type-detect@4.0.8:
3665 | resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
3666 | engines: {node: '>=4'}
3667 | dev: false
3668 |
3669 | /type-fest@0.20.2:
3670 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
3671 | engines: {node: '>=10'}
3672 | dev: true
3673 |
3674 | /typed-array-length@1.0.4:
3675 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
3676 | dependencies:
3677 | call-bind: 1.0.2
3678 | for-each: 0.3.3
3679 | is-typed-array: 1.1.10
3680 | dev: true
3681 |
3682 | /typescript@4.9.5:
3683 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
3684 | engines: {node: '>=4.2.0'}
3685 | hasBin: true
3686 | dev: true
3687 |
3688 | /unbox-primitive@1.0.2:
3689 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
3690 | dependencies:
3691 | call-bind: 1.0.2
3692 | has-bigints: 1.0.2
3693 | has-symbols: 1.0.3
3694 | which-boxed-primitive: 1.0.2
3695 | dev: true
3696 |
3697 | /unique-filename@1.1.1:
3698 | resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
3699 | dependencies:
3700 | unique-slug: 2.0.2
3701 | dev: false
3702 | optional: true
3703 |
3704 | /unique-slug@2.0.2:
3705 | resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
3706 | dependencies:
3707 | imurmurhash: 0.1.4
3708 | dev: false
3709 | optional: true
3710 |
3711 | /update-browserslist-db@1.0.10(browserslist@4.21.5):
3712 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
3713 | hasBin: true
3714 | peerDependencies:
3715 | browserslist: '>= 4.21.0'
3716 | dependencies:
3717 | browserslist: 4.21.5
3718 | escalade: 3.1.1
3719 | picocolors: 1.0.0
3720 | dev: true
3721 |
3722 | /uri-js@4.4.1:
3723 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
3724 | dependencies:
3725 | punycode: 2.3.0
3726 | dev: true
3727 |
3728 | /util-deprecate@1.0.2:
3729 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
3730 |
3731 | /uuid@9.0.0:
3732 | resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
3733 | hasBin: true
3734 | dev: false
3735 |
3736 | /webidl-conversions@3.0.1:
3737 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
3738 | dev: false
3739 |
3740 | /whatwg-url@5.0.0:
3741 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
3742 | dependencies:
3743 | tr46: 0.0.3
3744 | webidl-conversions: 3.0.1
3745 | dev: false
3746 |
3747 | /which-boxed-primitive@1.0.2:
3748 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
3749 | dependencies:
3750 | is-bigint: 1.0.4
3751 | is-boolean-object: 1.1.2
3752 | is-number-object: 1.0.7
3753 | is-string: 1.0.7
3754 | is-symbol: 1.0.4
3755 | dev: true
3756 |
3757 | /which-collection@1.0.1:
3758 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
3759 | dependencies:
3760 | is-map: 2.0.2
3761 | is-set: 2.0.2
3762 | is-weakmap: 2.0.1
3763 | is-weakset: 2.0.2
3764 | dev: true
3765 |
3766 | /which-typed-array@1.1.9:
3767 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
3768 | engines: {node: '>= 0.4'}
3769 | dependencies:
3770 | available-typed-arrays: 1.0.5
3771 | call-bind: 1.0.2
3772 | for-each: 0.3.3
3773 | gopd: 1.0.1
3774 | has-tostringtag: 1.0.0
3775 | is-typed-array: 1.1.10
3776 | dev: true
3777 |
3778 | /which@2.0.2:
3779 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
3780 | engines: {node: '>= 8'}
3781 | hasBin: true
3782 | dependencies:
3783 | isexe: 2.0.0
3784 |
3785 | /wide-align@1.1.5:
3786 | resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
3787 | dependencies:
3788 | string-width: 4.2.3
3789 | dev: false
3790 |
3791 | /word-wrap@1.2.3:
3792 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
3793 | engines: {node: '>=0.10.0'}
3794 | dev: true
3795 |
3796 | /wrappy@1.0.2:
3797 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
3798 |
3799 | /xtend@4.0.2:
3800 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
3801 | engines: {node: '>=0.4'}
3802 | dev: true
3803 |
3804 | /yallist@4.0.0:
3805 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
3806 |
3807 | /yaml@1.10.2:
3808 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
3809 | engines: {node: '>= 6'}
3810 | dev: true
3811 |
3812 | /yaml@2.2.1:
3813 | resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
3814 | engines: {node: '>= 14'}
3815 | dev: false
3816 |
3817 | /yocto-queue@0.1.0:
3818 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
3819 | engines: {node: '>=10'}
3820 | dev: true
3821 |
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josh-may/journal-gpt/e26adaa0e0c47ffe49ac1c39825e286b9923d699/public/favicon.ico
--------------------------------------------------------------------------------
/scripts/ingest-data.ts:
--------------------------------------------------------------------------------
1 | import { RecursiveCharacterTextSplitter } from 'langchain/text_splitter';
2 | import { OpenAIEmbeddings } from 'langchain/embeddings';
3 | import { PineconeStore } from 'langchain/vectorstores';
4 | import { pinecone } from '@/utils/pinecone-client';
5 | import { processMarkDownFiles } from '@/utils/helpers';
6 | import { PINECONE_INDEX_NAME, PINECONE_NAME_SPACE } from '@/config/pinecone';
7 |
8 | /* Name of directory to retrieve files from. You can change this as required */
9 | const directoryPath = 'Obsidian_Notes';
10 |
11 | export const run = async () => {
12 | try {
13 | /*load raw docs from the markdown files in the directory */
14 | const rawDocs = await processMarkDownFiles(directoryPath);
15 |
16 | /* Split text into chunks */
17 | const textSplitter = new RecursiveCharacterTextSplitter({
18 | chunkSize: 1000,
19 | chunkOverlap: 200,
20 | });
21 |
22 | const docs = await textSplitter.splitDocuments(rawDocs);
23 | console.log('split docs', docs);
24 |
25 | console.log('creating vector store...');
26 | /*create and store the embeddings in the vectorStore*/
27 | const embeddings = new OpenAIEmbeddings();
28 | const index = pinecone.Index(PINECONE_INDEX_NAME); //change to your own index name
29 | await PineconeStore.fromDocuments(
30 | index,
31 | docs,
32 | embeddings,
33 | 'text',
34 | PINECONE_NAME_SPACE, //optional namespace for your vectors
35 | );
36 | } catch (error) {
37 | console.log('error', error);
38 | throw new Error('Failed to ingest your data');
39 | }
40 | };
41 |
42 | (async () => {
43 | await run();
44 | console.log('ingestion complete');
45 | })();
46 |
--------------------------------------------------------------------------------
/styles/base.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | body {
6 | background-color: #1a202c;
7 | }
8 |
--------------------------------------------------------------------------------
/styles/chrome-bug.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Chrome has a bug with transitions on load since 2012!
3 | *
4 | * To prevent a "pop" of content, you have to disable all transitions until
5 | * the page is done loading.
6 | *
7 | * https://lab.laukstein.com/bug/input
8 | * https://twitter.com/timer150/status/1345217126680899584
9 | */
10 | body.loading * {
11 | transition: none !important;
12 | }
13 |
--------------------------------------------------------------------------------
/styles/loading-dots.module.css:
--------------------------------------------------------------------------------
1 | .loading {
2 | display: inline-flex;
3 | align-items: center;
4 | }
5 |
6 | .loading .spacer {
7 | margin-right: 2px;
8 | }
9 |
10 | .loading span {
11 | animation-name: blink;
12 | animation-duration: 1.4s;
13 | animation-iteration-count: infinite;
14 | animation-fill-mode: both;
15 | width: 5px;
16 | height: 5px;
17 | border-radius: 50%;
18 | display: inline-block;
19 | margin: 0 1px;
20 | }
21 |
22 | .loading span:nth-of-type(2) {
23 | animation-delay: 0.2s;
24 | }
25 |
26 | .loading span:nth-of-type(3) {
27 | animation-delay: 0.4s;
28 | }
29 |
30 | .loading2 {
31 | display: inline-flex;
32 | align-items: center;
33 | }
34 |
35 | .loading2 .spacer {
36 | margin-right: 2px;
37 | }
38 |
39 | .loading2 span {
40 | animation-name: blink;
41 | animation-duration: 1.4s;
42 | animation-iteration-count: infinite;
43 | animation-fill-mode: both;
44 | width: 4px;
45 | height: 4px;
46 | border-radius: 50%;
47 | display: inline-block;
48 | margin: 0 1px;
49 | }
50 |
51 | .loading2 span:nth-of-type(2) {
52 | animation-delay: 0.2s;
53 | }
54 |
55 | .loading2 span:nth-of-type(3) {
56 | animation-delay: 0.4s;
57 | }
58 |
59 | @keyframes blink {
60 | 0% {
61 | opacity: 0.2;
62 | }
63 | 20% {
64 | opacity: 1;
65 | }
66 | 100% {
67 | opacity: 0.2;
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/tailwind.config.cjs:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: [
4 | './app/**/*.{js,ts,jsx,tsx}',
5 | './pages/**/*.{js,ts,jsx,tsx}',
6 | './components/**/*.{js,ts,jsx,tsx}',
7 | ],
8 | theme: {
9 | extend: {},
10 | },
11 | };
12 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es2022",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "esModuleInterop": true,
11 | "module": "esnext",
12 | "moduleResolution": "node",
13 | "resolveJsonModule": true,
14 | "isolatedModules": true,
15 | "jsx": "preserve",
16 | "incremental": true,
17 | "baseUrl": ".",
18 | "plugins": [
19 | {
20 | "name": "next"
21 | }
22 | ],
23 | "paths": {
24 | "@/*": ["./*"]
25 | }
26 | },
27 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
28 | "exclude": ["node_modules"]
29 | }
30 |
--------------------------------------------------------------------------------
/types/chat.ts:
--------------------------------------------------------------------------------
1 | export type response = {
2 | text: string;
3 | };
4 |
--------------------------------------------------------------------------------
/utils/helpers.ts:
--------------------------------------------------------------------------------
1 | import glob from 'glob';
2 | import fs from 'fs/promises';
3 | import path from 'path';
4 | import { Document } from 'langchain/document';
5 |
6 | export async function processMarkDownFiles(
7 | directoryPath: string,
8 | ): Promise {
9 | try {
10 | const fileNames = await glob('**/*.md', { cwd: directoryPath });
11 | console.log('files', fileNames);
12 |
13 | const docs: Document[] = [];
14 | for (const fileName of fileNames) {
15 | const filePath = path.join(directoryPath, fileName);
16 | const text = await fs.readFile(filePath, {
17 | encoding: 'utf-8',
18 | });
19 | const metadata = { source: fileName };
20 | docs.push(
21 | new Document({
22 | pageContent: text,
23 | metadata,
24 | }),
25 | );
26 | }
27 | console.log('docs', docs);
28 | return docs;
29 | } catch (error) {
30 | console.log('error', error);
31 | throw new Error(`Could not read directory path ${directoryPath} `);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/utils/openai-client.ts:
--------------------------------------------------------------------------------
1 | import { OpenAI } from 'langchain/llms';
2 |
3 | if (!process.env.OPENAI_API_KEY) {
4 | throw new Error('Missing OpenAI Credentials');
5 | }
6 |
7 | export const openai = new OpenAI({
8 | temperature: 0,
9 | maxTokens: 2000,
10 | });
11 |
--------------------------------------------------------------------------------
/utils/pinecone-client.ts:
--------------------------------------------------------------------------------
1 | import { PineconeClient } from '@pinecone-database/pinecone';
2 |
3 | console.log(process.env.PINECONE_ENVIRONMENT);
4 | if (!process.env.PINECONE_ENVIRONMENT || !process.env.PINECONE_API_KEY) {
5 | throw new Error('Pinecone environment or api key vars missing');
6 | }
7 |
8 | async function initPinecone() {
9 | try {
10 | const pinecone = new PineconeClient();
11 |
12 | await pinecone.init({
13 | environment: process.env.PINECONE_ENVIRONMENT ?? '', //this is in the dashboard
14 | apiKey: process.env.PINECONE_API_KEY ?? '',
15 | });
16 |
17 | return pinecone;
18 | } catch (error) {
19 | console.log('error', error);
20 | throw new Error('Failed to initialize Pinecone Client');
21 | }
22 | }
23 |
24 | export const pinecone = await initPinecone();
25 |
--------------------------------------------------------------------------------
/visual-image/notion-chatgpt-langchain-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josh-may/journal-gpt/e26adaa0e0c47ffe49ac1c39825e286b9923d699/visual-image/notion-chatgpt-langchain-diagram.png
--------------------------------------------------------------------------------