├── LICENSE ├── README.md ├── backend ├── apikeys.json ├── characters │ ├── Benjamin.png │ └── Sophia.png ├── functions │ ├── combine_videos_function.py │ ├── create_audio_image_function.py │ ├── create_image_videos_function.py │ ├── create_script_function.py │ ├── create_search_query_function.py │ ├── create_speech_function.py │ ├── create_video_from_audio_function.py │ ├── get_image_function.py │ └── video_main_function.py ├── main.py ├── requirements.txt └── src │ └── backup.jpg └── frontend └── topic2explanation ├── .eslintrc.json ├── .gitignore ├── app ├── components │ ├── box1.jsx │ ├── box2.jsx │ ├── generateoutput.jsx │ ├── main.jsx │ └── nav.jsx ├── favicon.ico ├── globals.css ├── images │ ├── Alystria.png │ ├── background.png │ └── send.png ├── layout.jsx └── page.jsx ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js └── tailwind.config.js /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AI-Generated Video Tutorials with Character Animation and Slides! 🎥🤖📝🎨 2 | 3 | This AI tool helps you create captivating and informative AI-generated video tutorials on any topic! With a charming character featuring facial animation and informative slides, it can explain any topic with ease. The best part? You have full control over the tutorial's creativity, humor, level of explanation, character appearance, and voice. ❤️✨ 4 | 5 | Give it a try for free! 🔥 It leverages the powerful capabilities of various tools. 6 | 7 | # 🚀 Features 8 | - 🧠 The script is generated using Cohere's language model. (You can obtain a trial API key for free!) 9 | - 🗣️ Seamless integration with Edge TTS for high-quality voiceovers. 10 | - 😄 Engaging facial animation powered by SadTalker. 11 | - 🖼️ Eye-catching and relevant images from Google for slides. 12 | - 🎨 Customizable creativity, humor, explanation level, character appearance, and voice. 13 | 14 | # ✨ Quick Demo 15 | 16 | 17 | https://github.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/assets/90443032/0a1fb05a-8290-4391-b329-96f04dcae7a1 18 | 19 | 20 | # ✨ Full Demo 21 | 22 | 23 | https://github.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/assets/90443032/9eb78053-dd53-4fac-b0da-6139e21943e8 24 | 25 | 26 | https://github.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/assets/90443032/b933a178-e8c1-4660-8b60-74a8d29faa2e 27 | 28 | 29 | # 🚨 Requirements 30 | Open up a terminal and go to backend directory 31 | 32 | For Windows 33 | ```sh 34 | python -m venv .venv 35 | .venv\Scripts\activate 36 | pip install -r requirements.txt 37 | ``` 38 | For Linux or Mac 39 | ```sh 40 | python -m venv .venv 41 | source .venv/bin/activate 42 | pip install -r requirements.txt 43 | ``` 44 | 45 | Also install sadtalker(https://github.com/OpenTalker/SadTalker#%EF%B8%8F-1-installation), the sadtalker directory must be inside backend. Run the sadtalker webui once so that the venv environment is created. 46 | 47 | Add your Cohere API key to backend/apikeys.json 48 | 49 | # 🔌 How to use 50 | 51 | Open up a terminal and go to frontend/topic2explanation 52 | ```sh 53 | npm run dev 54 | ``` 55 | Open up another terminal and go to backend 56 | ```sh 57 | uvicorn main:app 58 | ``` 59 | 60 | 61 | # 🎨 Customizability 62 | To change the character and voice, you need to put your desired character in characters directory. It must be in 640x720 resolution and for the voice you can choose a voice from the voice list which can be seen using this command. 63 | 64 | ```sh 65 | edge-tts --list-voices 66 | ``` 67 | 68 | Once you find a voice you like add it in the create_audio_image function 69 | ```sh 70 | character_dict = {'Benjamin': "en-GB-RyanNeural", 71 | 'Sophia': 'en-IE-EmilyNeural'} 72 | ``` 73 | 74 | # 📝 How it works 75 | ✨ It all starts with the creation of a script using the create_script function. 📜 This function takes various parameters such as topic, level of explanation, target audience age, creativity, and humor. 🎭 With these parameters in mind, the script is carefully crafted to explain the chosen topic. To accomplish this, we leverage the power of the Cohere API and Langchain. 🤝 76 | 77 | 🎙️ Once the script is ready, we move on to the create_audio_image function. This function splits the script into smaller sentences, which are then used to generate audio dialogues using Microsoft's Edge Text-to-Speech (TTS) service. 🗣️ In parallel, we generate a search query for each sentence using Cohere and Langchain once again. These search queries help us retrieve relevant images from Google, which will be used as slides in the presentation. 🖼️ 78 | 79 | 🎥 With the audio files and character images in place, we proceed to create the videos using the Sadtalker library. 🎬 First, we generate videos for the character animations, and then we transform the still images from Google into slide videos. 🎞️ These slide videos will be seamlessly integrated into the final video presentation. To add an element of randomness, we assign a random number to each video and slide pair. Based on this number, we position the slides and talking character either to the left or right, or even use the image as the background. The talking character may appear in the bottom left or right corner of the screen. 🎯 80 | 81 | 📼 Finally, we save the completed video, combining the slide videos and character animation videos. The resulting video is now ready to be shared! 🎉 To bring it all together, we rely on FastAPI for the backend, and for the frontend, we utilize Next.js and Tailwind CSS. 🚀 82 | 83 | # ❤️ Thanks 84 | If you found this interesting check out Alystria AI for more fun projects 85 | ```sh 86 | https://www.linkedin.com/company/alystria-ai 87 | ``` 88 | 89 | - 🌐 Github: https://github.com/AkshitIreddy 90 | - 💡 LinkedIn: https://www.linkedin.com/in/akshit-ireddy 91 | - ✍️ Medium: https://medium.com/@akshit.r.ireddy 92 | - 🐤 Twitter: https://twitter.com/akshit_ireddy 93 | 94 | -------------------------------------------------------------------------------- /backend/apikeys.json: -------------------------------------------------------------------------------- 1 | { 2 | "api_keys": [""] 3 | } 4 | -------------------------------------------------------------------------------- /backend/characters/Benjamin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/backend/characters/Benjamin.png -------------------------------------------------------------------------------- /backend/characters/Sophia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/backend/characters/Sophia.png -------------------------------------------------------------------------------- /backend/functions/combine_videos_function.py: -------------------------------------------------------------------------------- 1 | import os 2 | import random 3 | from moviepy.editor import * 4 | 5 | 6 | def combine_videos(timestamp): 7 | 8 | video1_folder = f"{timestamp}/video" 9 | video2_folder = f"{timestamp}/image_videos" 10 | 11 | # Sort video files based on numeric part of file name 12 | video1_files = sorted(os.listdir(video1_folder), 13 | key=lambda x: int(x.split(".")[0])) 14 | video2_files = sorted(os.listdir(video2_folder), 15 | key=lambda x: int(x.split(".")[0])) 16 | 17 | clips = [] 18 | for i in range(len(video1_files)): 19 | # Load video clips 20 | video1 = VideoFileClip(os.path.join(video1_folder, video1_files[i])) 21 | video2 = VideoFileClip(os.path.join(video2_folder, video2_files[i])) 22 | 23 | # Resize videos based on scenario 24 | scenario = random.randint(1, 4) 25 | if scenario in [1, 2]: 26 | video1 = video1.resize((640, 720)) 27 | video2 = video2.resize((640, 720)) 28 | elif scenario in [3, 4]: 29 | video1 = video1.resize((320, 360)) 30 | video2 = video2.resize((1280, 720)) 31 | 32 | # Combine videos based on scenario 33 | if scenario == 1: 34 | final_clip = clips_array([[video1, video2]]) 35 | elif scenario == 2: 36 | final_clip = clips_array([[video2, video1]]) 37 | elif scenario == 3: 38 | final_clip = CompositeVideoClip( 39 | [video2, video1.set_position((0, 0.5), relative=True)], use_bgclip=True) 40 | elif scenario == 4: 41 | final_clip = CompositeVideoClip( 42 | [video2, video1.set_position((0.75, 0.5), relative=True)], use_bgclip=True) 43 | 44 | clips.append(final_clip) 45 | 46 | final_clip = concatenate_videoclips(clips) 47 | final_clip.write_videofile( 48 | f"{timestamp}/final_video.mp4", codec="libx264", fps=25) 49 | -------------------------------------------------------------------------------- /backend/functions/create_audio_image_function.py: -------------------------------------------------------------------------------- 1 | from langchain.text_splitter import RecursiveCharacterTextSplitter 2 | from functions.create_search_query_function import create_search_query 3 | from functions.create_speech_function import create_speech 4 | from functions.get_image_function import get_image 5 | 6 | 7 | def create_audio_image(script, character_name, timestamp): 8 | 9 | character_dict = {'Benjamin': "en-GB-RyanNeural", 10 | 'Sophia': 'en-IE-EmilyNeural'} 11 | 12 | text_splitter = RecursiveCharacterTextSplitter( 13 | chunk_size=150, 14 | chunk_overlap=0, 15 | length_function=len, 16 | ) 17 | 18 | list = text_splitter.split_text(script) 19 | search_dict = {} 20 | count = 0 21 | for i in list: 22 | create_speech(i, f'{timestamp}/audio/{count}.wav', 23 | character_dict[character_name]) 24 | search_query = create_search_query(i).lstrip() 25 | if search_query in search_dict: 26 | search_dict[search_query] += 1 27 | else: 28 | search_dict[search_query] = 1 29 | count = count + 1 30 | 31 | count = 0 32 | for key, value in search_dict.items(): 33 | get_image(key, value, timestamp, count) 34 | count = count + value 35 | -------------------------------------------------------------------------------- /backend/functions/create_image_videos_function.py: -------------------------------------------------------------------------------- 1 | from moviepy.editor import * 2 | import os 3 | import re 4 | 5 | 6 | def create_image_videos(timestamp): 7 | 8 | image_folder = f"{timestamp}/images" 9 | audio_folder = f"{timestamp}/audio" 10 | output_folder = f"{timestamp}/image_videos" 11 | 12 | image_files = os.listdir(image_folder) 13 | 14 | # Sort image files based on numeric part of file name 15 | image_files.sort(key=lambda x: int(re.search(r'\d+', x).group())) 16 | 17 | for image_file in image_files: 18 | image_path = os.path.join(image_folder, image_file) 19 | audio_file = os.path.join( 20 | audio_folder, f"{image_file.split('.')[0]}.wav") 21 | 22 | audio_duration = AudioFileClip(audio_file).duration 23 | 24 | # Load the audio clip and make it silent 25 | audio_clip = AudioFileClip(audio_file).volumex(0) 26 | 27 | # Load the image clip 28 | image_clip = ImageClip(image_path, duration=audio_duration) 29 | 30 | # Combine the image and audio clips 31 | video_clip = image_clip.set_audio(audio_clip) 32 | 33 | # Split the image file name to get the video clip name 34 | video_clip_name = os.path.splitext(image_file)[0] 35 | 36 | # Set the output path for the video clip 37 | output_path = os.path.join(output_folder, f"{video_clip_name}.mp4") 38 | 39 | # Write the video clip to the output path 40 | video_clip.write_videofile(output_path, codec="libx264", fps=25) 41 | -------------------------------------------------------------------------------- /backend/functions/create_script_function.py: -------------------------------------------------------------------------------- 1 | from langchain.llms import Cohere 2 | from langchain import PromptTemplate, LLMChain 3 | import json 4 | import random 5 | 6 | 7 | def create_script(topic_name, level_of_explanation, age, creativity_level, humour_level): 8 | 9 | age = str(age) 10 | 11 | beginner = "Explain this in a simple and easy to understand way for beginners. Help them understand the intuition, logic and importance of it." 12 | 13 | intermediate = "Explain the topic with a bit more complexity and depth, assuming the reader has some prior knowledge and understanding. The script must be very long and detailed." 14 | 15 | advanced = "Delve into intricate details of the topic and explain it in depth. The reader has a solid foundation and is familiar with the intermediate concepts. Include more technical language, mathematical formulas, or advanced examples to provide a comprehensive understanding of the topic. Be extremely detailed and the script must be very long." 16 | 17 | level_string = beginner if level_of_explanation == 'beginner' else intermediate if creativity_level == 'intermediate' else advanced 18 | 19 | creativity_string = "" if creativity_level < 4 else "Be Creative while explaining the concepts to make it easier to understand." if creativity_level < 7 else "Be creative while explaining the concepts to make it easier to understand, include creative analogies while explaining." 20 | 21 | humour_string = "" if humour_level < 4 else "Be a little humorous while explaining the concepts." if humour_level < 7 else "Be funny and add jokes while explaining the concepts to make it more fun to learn." 22 | 23 | # Randomly select an API key 24 | selected_key = json.load(open('apikeys.json', 'r'))['api_keys'][random.randint( 25 | 0, len(json.load(open('apikeys.json', 'r'))['api_keys'])-1)] 26 | 27 | # Initialise model 28 | llm = Cohere(cohere_api_key=selected_key, 29 | model='command', temperature=1.2, max_tokens=1700) 30 | 31 | # create the template string 32 | template = """Instructions:\nCreate a script for a self contained video about {topic_name} such that a {age} year old can understand. Explain the key concepts. {level_string} {creativity_string} {humour_string} It should be in first person. Be cheerful and happy while explaining. The Youtube channel is Alystria.\n""" 33 | 34 | # create prompt 35 | prompt = PromptTemplate(template=template, input_variables=[ 36 | "topic_name", "age", "level_string", "creativity_string", "humour_string"]) 37 | 38 | # print(prompt.format(topic_name=topic_name , age=age , creativity_string=creativity_string , humour_string=humour_string, level_string=level_string)) 39 | 40 | # Create and run the llm chain 41 | llm_chain = LLMChain(prompt=prompt, llm=llm) 42 | response = llm_chain.run(topic_name=topic_name, age=age, creativity_string=creativity_string, 43 | humour_string=humour_string, level_string=level_string) 44 | 45 | return response 46 | -------------------------------------------------------------------------------- /backend/functions/create_search_query_function.py: -------------------------------------------------------------------------------- 1 | import json 2 | import random 3 | from langchain.llms import Cohere 4 | from langchain import PromptTemplate, LLMChain 5 | 6 | 7 | def create_search_query(text): 8 | # Randomly select an API key 9 | selected_key = json.load(open('apikeys.json', 'r'))['api_keys'][random.randint( 10 | 0, len(json.load(open('apikeys.json', 'r'))['api_keys'])-1)] 11 | 12 | # Initialise model 13 | llm = Cohere(cohere_api_key=selected_key, 14 | model='command-xlarge-beta', temperature=1.2, max_tokens=100, stop=['\n\n']) 15 | 16 | # create the template string 17 | template = """Instructions:\nCreate a search query for the text to get relevant images.\n\nText: Quantum computing is a multidisciplinary field comprising aspects of computer science, physics, and mathematics that utilizes quantum mechanics to solve complex problems faster than on classical computers.\nSearch Query: Quantum Computing\n\nText: {text}\nSearch Query:""" 18 | 19 | # create prompt 20 | prompt = PromptTemplate(template=template, input_variables=["text"]) 21 | 22 | # Create and run the llm chain 23 | llm_chain = LLMChain(prompt=prompt, llm=llm) 24 | response = llm_chain.run(text=text).replace('\n', "") 25 | 26 | return response 27 | -------------------------------------------------------------------------------- /backend/functions/create_speech_function.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | 3 | 4 | def create_speech(text, path, voice): 5 | # Define the command and arguments 6 | command = ["edge-tts", "--voice", voice, 7 | "--text", text, "--write-media", path] 8 | 9 | # Run the command in the activated environment 10 | subprocess.call(command) 11 | -------------------------------------------------------------------------------- /backend/functions/create_video_from_audio_function.py: -------------------------------------------------------------------------------- 1 | import os 2 | import shutil 3 | import subprocess 4 | 5 | 6 | def create_video_from_audio(timestamp, character_name): 7 | audio_folder = f"{timestamp}/audio" 8 | audio_files = os.listdir(audio_folder) 9 | 10 | img_path = f"characters/{character_name}.png" 11 | output_path = f"{timestamp}/video_temp" 12 | 13 | activate_env_cmd = "SadTalker\\venv\\Scripts\\activate" 14 | command_template = "python SadTalker/inference.py --driven_audio {audio_path} --source_image {img_path} --result_dir {output_path} --still --preprocess full --enhancer gfpgan" 15 | 16 | for audio_file in audio_files: 17 | audio_path = f"{audio_folder}/{audio_file}" 18 | 19 | # Run the commands within the same subprocess 20 | command = f"{activate_env_cmd} && {command_template.format(audio_path=audio_path, img_path=img_path, output_path=output_path)}" 21 | subprocess.run(command, shell=True) 22 | 23 | # Find the generated video 24 | video_folder = os.listdir(output_path)[0] 25 | video_path = f"{output_path}/{video_folder}/{character_name}##{audio_file.split('.')[0]}_enhanced.mp4" 26 | 27 | # Move the generated video to the new folder 28 | video_output_path = f"{timestamp}/video/{audio_file.split('.')[0]}.mp4" 29 | shutil.move(video_path, video_output_path) 30 | 31 | # Delete the original subfolder in 'video_temp' 32 | subfolder_path = f"{output_path}/{video_folder}" 33 | shutil.rmtree(subfolder_path) 34 | -------------------------------------------------------------------------------- /backend/functions/get_image_function.py: -------------------------------------------------------------------------------- 1 | from pygoogle_image import image as pi 2 | import shutil 3 | import os 4 | 5 | 6 | def get_image(query, value, timestamp, count): 7 | pi.download(keywords=query, limit=value+2) 8 | 9 | # Create the path for the query folder 10 | query_path = "images" 11 | folder_name = os.listdir(query_path)[0] 12 | query_path = os.path.join(query_path, folder_name) 13 | 14 | # Create the path for the timestamp folder 15 | timestamp_path = f"{timestamp}/images" 16 | 17 | # Get the list of image files in the query folder 18 | images = [f for f in os.listdir(query_path)] 19 | 20 | # Remove images that are 1 KB 21 | images = [f for f in images if os.path.getsize( 22 | os.path.join(query_path, f)) > 2000] 23 | 24 | if len(images) == 0 or images == None: 25 | images = ["src/backup.jpg"] * value 26 | # Rename and move the remaining images to the timestamp/images folder 27 | for image in images: 28 | extension = os.path.splitext(image)[1] 29 | new_name = f"{count}{extension}" 30 | new_path = os.path.join(timestamp_path, new_name) 31 | shutil.copy(image, new_path) 32 | count += 1 33 | 34 | # Delete the query folder 35 | shutil.rmtree(query_path) 36 | return "" 37 | 38 | # Rename and move the remaining images to the timestamp/images folder 39 | for image in images: 40 | extension = os.path.splitext(image)[1] 41 | new_name = f"{count}{extension}" 42 | old_path = os.path.join(query_path, image) 43 | new_path = os.path.join(timestamp_path, new_name) 44 | shutil.move(old_path, new_path) 45 | count += 1 46 | 47 | # Delete the query folder 48 | shutil.rmtree(query_path) 49 | -------------------------------------------------------------------------------- /backend/functions/video_main_function.py: -------------------------------------------------------------------------------- 1 | from datetime import datetime 2 | import os 3 | from functions.create_audio_image_function import create_audio_image 4 | from functions.create_script_function import create_script 5 | from functions.create_video_from_audio_function import create_video_from_audio 6 | from functions.create_image_videos_function import create_image_videos 7 | from functions.combine_videos_function import combine_videos 8 | from functions.get_image_function import get_image 9 | 10 | 11 | def video_main(topic_name, level_of_explanation, age, creativity_level, humour_level, character_name): 12 | timestamp = datetime.now().strftime("%Y_%m_%d_%H_%M_%S") 13 | os.makedirs(timestamp) 14 | os.makedirs(f'{timestamp}/audio') 15 | os.makedirs(f'{timestamp}/images') 16 | os.makedirs(f'{timestamp}/video') 17 | os.makedirs(f'{timestamp}/video_temp') 18 | os.makedirs(f'{timestamp}/image_videos') 19 | 20 | script = create_script(topic_name, level_of_explanation, 21 | age, creativity_level, humour_level) 22 | create_audio_image(script, character_name, timestamp) 23 | create_video_from_audio(timestamp, character_name) 24 | create_image_videos(timestamp) 25 | combine_videos(timestamp) 26 | 27 | return f"{timestamp}/final_video.mp4" 28 | -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- 1 | from fastapi import FastAPI, HTTPException, Request, Depends, File 2 | from fastapi.security import HTTPBasic, HTTPBasicCredentials 3 | from fastapi.middleware.cors import CORSMiddleware 4 | from fastapi.responses import FileResponse 5 | from functions.video_main_function import video_main 6 | 7 | app = FastAPI() 8 | security = HTTPBasic() 9 | app.add_middleware( 10 | CORSMiddleware, 11 | allow_origins=["*"], 12 | allow_credentials=True, 13 | allow_methods=["*"], 14 | allow_headers=["*"], 15 | ) 16 | 17 | 18 | @app.post("/videoCreate") 19 | async def create_insights(request: Request, credentials: HTTPBasicCredentials = Depends(security)): 20 | if credentials.username != "myusername" or credentials.password != "mypassword": 21 | raise HTTPException(status_code=401, detail="Invalid credentials") 22 | data = await request.json() 23 | message = data['message'] 24 | level = data['level'] 25 | age = data['age'] 26 | creative = data['creative'] 27 | humour = data['humour'] 28 | characterName = data['characterName'] 29 | 30 | path = video_main(message, level, age, creative, humour, characterName) 31 | return FileResponse(path, media_type="video/mp4") 32 | -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/backend/requirements.txt -------------------------------------------------------------------------------- /backend/src/backup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/backend/src/backup.jpg -------------------------------------------------------------------------------- /frontend/topic2explanation/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/topic2explanation/.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 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/box1.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import send from "../images/send.png"; 4 | 5 | export default function Box1(props) { 6 | const handleMessageChange = (e) => { 7 | props.setMessage(e.target.value); 8 | }; 9 | const handleClick = () => { 10 | props.setLoading(true); 11 | }; 12 | return ( 13 |
14 |
15 | 21 | {!props.loading ? ( 22 | 30 | ) : ( 31 | 47 | )} 48 |
49 | {props.videoUrl != "" ? ( 50 | 55 | ) : ( 56 |
57 | )} 58 |
59 | ); 60 | } 61 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/box2.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useState } from "react"; 3 | 4 | export default function Box2(props) { 5 | const toggleMenu = () => setIsOpen(!isOpen); 6 | const toggleMenu1 = () => setIsOpen1(!isOpen1); 7 | const [isOpen, setIsOpen] = useState(false); 8 | const [isOpen1, setIsOpen1] = useState(false); 9 | return ( 10 |
11 |
12 | Parameters🛠️ 13 |
14 |
15 |

Level🎓

16 |
17 | 18 | {props.level} 19 | 20 |
21 | 39 | 40 | {isOpen && ( 41 | 74 | )} 75 |
76 |
77 |
78 |
79 |

Character🎭

80 |
81 | 82 | {props.characterName} 83 | 84 |
85 | 103 | 104 | {isOpen1 && ( 105 | 127 | )} 128 |
129 |
130 |
131 |
132 |
133 |

Creativity✨

134 |

{props.creative}

135 |
136 | props.setCreative(e.target.value)} 144 | /> 145 |
146 |
147 |
148 |

Humour🤣

149 |

{props.humour}

150 |
151 | props.setHumour(e.target.value)} 159 | /> 160 |
161 |
162 |
163 |

Age🐤

164 |

{props.age}

165 |
166 | props.setAge(e.target.value)} 174 | /> 175 |
176 |
177 | ); 178 | } 179 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/generateoutput.jsx: -------------------------------------------------------------------------------- 1 | export const generateOutput = async ( 2 | message, 3 | level, 4 | age, 5 | creative, 6 | humour, 7 | characterName, 8 | setLoading, 9 | setVideoUrl 10 | ) => { 11 | const headers = new Headers(); 12 | headers.append("Content-Type", "application/json"); 13 | headers.append("Authorization", "Basic " + btoa("myusername:mypassword")); 14 | 15 | const body = JSON.stringify({ 16 | message, 17 | level, 18 | age, 19 | creative, 20 | humour, 21 | characterName, 22 | }); 23 | 24 | const response = await fetch("http://127.0.0.1:8000/videoCreate", { 25 | method: "POST", 26 | body: body, 27 | headers: headers, 28 | }); 29 | 30 | if (response.ok) { 31 | const blob = await response.blob(); 32 | const videoUrl = URL.createObjectURL(blob); 33 | setVideoUrl(videoUrl); 34 | console.log("Success"); 35 | } else { 36 | console.log("Error:", response.statusText); 37 | } 38 | setLoading(false); 39 | }; 40 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/main.jsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import React from "react"; 3 | import { useState, useEffect } from "react"; 4 | import Box1 from "./box1"; 5 | import Box2 from "./box2"; 6 | import { generateOutput } from "./generateoutput"; 7 | 8 | export default function Main() { 9 | const [message, setMessage] = useState(""); 10 | const [level, setLevel] = useState("beginner"); 11 | const [age, setAge] = useState(18); 12 | const [creative, setCreative] = useState(8); 13 | const [humour, setHumour] = useState(6); 14 | const [characterName, setCharacterName] = useState("Benjamin"); 15 | const [loading, setLoading] = useState(false); 16 | const [videoUrl, setVideoUrl] = useState(""); 17 | 18 | useEffect(() => { 19 | if (loading) { 20 | generateOutput( 21 | message, 22 | level, 23 | age, 24 | creative, 25 | humour, 26 | characterName, 27 | setLoading, 28 | setVideoUrl 29 | ); 30 | } 31 | }, [age, characterName, creative, humour, level, loading, message]); 32 | 33 | return ( 34 |
35 |
36 | 48 |
49 |
50 | 62 |
63 |
64 | ); 65 | } 66 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/nav.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import alystria from "../images/Alystria.png"; 4 | 5 | export default function Nav() { 6 | return ( 7 |
8 | 33 |
34 | ); 35 | } 36 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/frontend/topic2explanation/app/favicon.ico -------------------------------------------------------------------------------- /frontend/topic2explanation/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | body { 6 | background-image: url("images/background.png"); 7 | background-repeat: no-repeat; 8 | background-size: cover; 9 | } 10 | 11 | .glass { 12 | background: rgba(255, 255, 255, 0.25); 13 | box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); 14 | backdrop-filter: blur(4px); 15 | -webkit-backdrop-filter: blur(4px); 16 | border-radius: 10px; 17 | border: 1px solid rgba(255, 255, 255, 0.18); 18 | } 19 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/Alystria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/frontend/topic2explanation/app/images/Alystria.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/frontend/topic2explanation/app/images/background.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/0db30d717da63b24790f2299941b953c2c721cf1/frontend/topic2explanation/app/images/send.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/layout.jsx: -------------------------------------------------------------------------------- 1 | import "./globals.css"; 2 | import { Dancing_Script } from "@next/font/google"; 3 | 4 | const font = Dancing_Script({ 5 | weight: "600", 6 | subsets: ["latin"], 7 | }); 8 | 9 | export default function RootLayout({ children }) { 10 | return ( 11 | 12 | {children} 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /frontend/topic2explanation/app/page.jsx: -------------------------------------------------------------------------------- 1 | import Main from "./components/main"; 2 | import Nav from "./components/nav"; 3 | 4 | export default function Home() { 5 | return ( 6 |
7 |
10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /frontend/topic2explanation/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./*"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /frontend/topic2explanation/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /frontend/topic2explanation/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "topic2explanation", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "topic2explanation", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@next/font": "^13.4.4", 12 | "autoprefixer": "10.4.14", 13 | "eslint": "8.42.0", 14 | "eslint-config-next": "13.4.4", 15 | "next": "13.4.4", 16 | "postcss": "8.4.24", 17 | "react": "18.2.0", 18 | "react-dom": "18.2.0", 19 | "tailwindcss": "3.3.2" 20 | } 21 | }, 22 | "node_modules/@alloc/quick-lru": { 23 | "version": "5.2.0", 24 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 25 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 26 | "engines": { 27 | "node": ">=10" 28 | }, 29 | "funding": { 30 | "url": "https://github.com/sponsors/sindresorhus" 31 | } 32 | }, 33 | "node_modules/@babel/runtime": { 34 | "version": "7.22.3", 35 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz", 36 | "integrity": "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==", 37 | "dependencies": { 38 | "regenerator-runtime": "^0.13.11" 39 | }, 40 | "engines": { 41 | "node": ">=6.9.0" 42 | } 43 | }, 44 | "node_modules/@eslint-community/eslint-utils": { 45 | "version": "4.4.0", 46 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 47 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 48 | "dependencies": { 49 | "eslint-visitor-keys": "^3.3.0" 50 | }, 51 | "engines": { 52 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 53 | }, 54 | "peerDependencies": { 55 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 56 | } 57 | }, 58 | "node_modules/@eslint-community/regexpp": { 59 | "version": "4.5.1", 60 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 61 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 62 | "engines": { 63 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 64 | } 65 | }, 66 | "node_modules/@eslint/eslintrc": { 67 | "version": "2.0.3", 68 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 69 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 70 | "dependencies": { 71 | "ajv": "^6.12.4", 72 | "debug": "^4.3.2", 73 | "espree": "^9.5.2", 74 | "globals": "^13.19.0", 75 | "ignore": "^5.2.0", 76 | "import-fresh": "^3.2.1", 77 | "js-yaml": "^4.1.0", 78 | "minimatch": "^3.1.2", 79 | "strip-json-comments": "^3.1.1" 80 | }, 81 | "engines": { 82 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 83 | }, 84 | "funding": { 85 | "url": "https://opencollective.com/eslint" 86 | } 87 | }, 88 | "node_modules/@eslint/js": { 89 | "version": "8.42.0", 90 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz", 91 | "integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==", 92 | "engines": { 93 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 94 | } 95 | }, 96 | "node_modules/@humanwhocodes/config-array": { 97 | "version": "0.11.10", 98 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 99 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 100 | "dependencies": { 101 | "@humanwhocodes/object-schema": "^1.2.1", 102 | "debug": "^4.1.1", 103 | "minimatch": "^3.0.5" 104 | }, 105 | "engines": { 106 | "node": ">=10.10.0" 107 | } 108 | }, 109 | "node_modules/@humanwhocodes/module-importer": { 110 | "version": "1.0.1", 111 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 112 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 113 | "engines": { 114 | "node": ">=12.22" 115 | }, 116 | "funding": { 117 | "type": "github", 118 | "url": "https://github.com/sponsors/nzakas" 119 | } 120 | }, 121 | "node_modules/@humanwhocodes/object-schema": { 122 | "version": "1.2.1", 123 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 124 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 125 | }, 126 | "node_modules/@jridgewell/gen-mapping": { 127 | "version": "0.3.3", 128 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 129 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 130 | "dependencies": { 131 | "@jridgewell/set-array": "^1.0.1", 132 | "@jridgewell/sourcemap-codec": "^1.4.10", 133 | "@jridgewell/trace-mapping": "^0.3.9" 134 | }, 135 | "engines": { 136 | "node": ">=6.0.0" 137 | } 138 | }, 139 | "node_modules/@jridgewell/resolve-uri": { 140 | "version": "3.1.0", 141 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 142 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 143 | "engines": { 144 | "node": ">=6.0.0" 145 | } 146 | }, 147 | "node_modules/@jridgewell/set-array": { 148 | "version": "1.1.2", 149 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 150 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 151 | "engines": { 152 | "node": ">=6.0.0" 153 | } 154 | }, 155 | "node_modules/@jridgewell/sourcemap-codec": { 156 | "version": "1.4.15", 157 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 158 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 159 | }, 160 | "node_modules/@jridgewell/trace-mapping": { 161 | "version": "0.3.18", 162 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 163 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 164 | "dependencies": { 165 | "@jridgewell/resolve-uri": "3.1.0", 166 | "@jridgewell/sourcemap-codec": "1.4.14" 167 | } 168 | }, 169 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 170 | "version": "1.4.14", 171 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 172 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 173 | }, 174 | "node_modules/@next/env": { 175 | "version": "13.4.4", 176 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz", 177 | "integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg==" 178 | }, 179 | "node_modules/@next/eslint-plugin-next": { 180 | "version": "13.4.4", 181 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz", 182 | "integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==", 183 | "dependencies": { 184 | "glob": "7.1.7" 185 | } 186 | }, 187 | "node_modules/@next/font": { 188 | "version": "13.4.4", 189 | "resolved": "https://registry.npmjs.org/@next/font/-/font-13.4.4.tgz", 190 | "integrity": "sha512-iYmL/O0rV9NS8a2UXuRoZOzImz8Q0mM8bAmxtj8nccrpwZ6iOOZlbf2d0Genczl4wtuXRXVPR8goGjJM4C2SDg==" 191 | }, 192 | "node_modules/@next/swc-darwin-arm64": { 193 | "version": "13.4.4", 194 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz", 195 | "integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==", 196 | "cpu": [ 197 | "arm64" 198 | ], 199 | "optional": true, 200 | "os": [ 201 | "darwin" 202 | ], 203 | "engines": { 204 | "node": ">= 10" 205 | } 206 | }, 207 | "node_modules/@next/swc-darwin-x64": { 208 | "version": "13.4.4", 209 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz", 210 | "integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==", 211 | "cpu": [ 212 | "x64" 213 | ], 214 | "optional": true, 215 | "os": [ 216 | "darwin" 217 | ], 218 | "engines": { 219 | "node": ">= 10" 220 | } 221 | }, 222 | "node_modules/@next/swc-linux-arm64-gnu": { 223 | "version": "13.4.4", 224 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz", 225 | "integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==", 226 | "cpu": [ 227 | "arm64" 228 | ], 229 | "optional": true, 230 | "os": [ 231 | "linux" 232 | ], 233 | "engines": { 234 | "node": ">= 10" 235 | } 236 | }, 237 | "node_modules/@next/swc-linux-arm64-musl": { 238 | "version": "13.4.4", 239 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz", 240 | "integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==", 241 | "cpu": [ 242 | "arm64" 243 | ], 244 | "optional": true, 245 | "os": [ 246 | "linux" 247 | ], 248 | "engines": { 249 | "node": ">= 10" 250 | } 251 | }, 252 | "node_modules/@next/swc-linux-x64-gnu": { 253 | "version": "13.4.4", 254 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz", 255 | "integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==", 256 | "cpu": [ 257 | "x64" 258 | ], 259 | "optional": true, 260 | "os": [ 261 | "linux" 262 | ], 263 | "engines": { 264 | "node": ">= 10" 265 | } 266 | }, 267 | "node_modules/@next/swc-linux-x64-musl": { 268 | "version": "13.4.4", 269 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz", 270 | "integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==", 271 | "cpu": [ 272 | "x64" 273 | ], 274 | "optional": true, 275 | "os": [ 276 | "linux" 277 | ], 278 | "engines": { 279 | "node": ">= 10" 280 | } 281 | }, 282 | "node_modules/@next/swc-win32-arm64-msvc": { 283 | "version": "13.4.4", 284 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz", 285 | "integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==", 286 | "cpu": [ 287 | "arm64" 288 | ], 289 | "optional": true, 290 | "os": [ 291 | "win32" 292 | ], 293 | "engines": { 294 | "node": ">= 10" 295 | } 296 | }, 297 | "node_modules/@next/swc-win32-ia32-msvc": { 298 | "version": "13.4.4", 299 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz", 300 | "integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==", 301 | "cpu": [ 302 | "ia32" 303 | ], 304 | "optional": true, 305 | "os": [ 306 | "win32" 307 | ], 308 | "engines": { 309 | "node": ">= 10" 310 | } 311 | }, 312 | "node_modules/@next/swc-win32-x64-msvc": { 313 | "version": "13.4.4", 314 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz", 315 | "integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==", 316 | "cpu": [ 317 | "x64" 318 | ], 319 | "optional": true, 320 | "os": [ 321 | "win32" 322 | ], 323 | "engines": { 324 | "node": ">= 10" 325 | } 326 | }, 327 | "node_modules/@nodelib/fs.scandir": { 328 | "version": "2.1.5", 329 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 330 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 331 | "dependencies": { 332 | "@nodelib/fs.stat": "2.0.5", 333 | "run-parallel": "^1.1.9" 334 | }, 335 | "engines": { 336 | "node": ">= 8" 337 | } 338 | }, 339 | "node_modules/@nodelib/fs.stat": { 340 | "version": "2.0.5", 341 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 342 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 343 | "engines": { 344 | "node": ">= 8" 345 | } 346 | }, 347 | "node_modules/@nodelib/fs.walk": { 348 | "version": "1.2.8", 349 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 350 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 351 | "dependencies": { 352 | "@nodelib/fs.scandir": "2.1.5", 353 | "fastq": "^1.6.0" 354 | }, 355 | "engines": { 356 | "node": ">= 8" 357 | } 358 | }, 359 | "node_modules/@pkgr/utils": { 360 | "version": "2.4.1", 361 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", 362 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", 363 | "dependencies": { 364 | "cross-spawn": "^7.0.3", 365 | "fast-glob": "^3.2.12", 366 | "is-glob": "^4.0.3", 367 | "open": "^9.1.0", 368 | "picocolors": "^1.0.0", 369 | "tslib": "^2.5.0" 370 | }, 371 | "engines": { 372 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 373 | }, 374 | "funding": { 375 | "url": "https://opencollective.com/unts" 376 | } 377 | }, 378 | "node_modules/@rushstack/eslint-patch": { 379 | "version": "1.3.0", 380 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz", 381 | "integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w==" 382 | }, 383 | "node_modules/@swc/helpers": { 384 | "version": "0.5.1", 385 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 386 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 387 | "dependencies": { 388 | "tslib": "^2.4.0" 389 | } 390 | }, 391 | "node_modules/@types/json5": { 392 | "version": "0.0.29", 393 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 394 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 395 | }, 396 | "node_modules/@typescript-eslint/parser": { 397 | "version": "5.59.8", 398 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.8.tgz", 399 | "integrity": "sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==", 400 | "dependencies": { 401 | "@typescript-eslint/scope-manager": "5.59.8", 402 | "@typescript-eslint/types": "5.59.8", 403 | "@typescript-eslint/typescript-estree": "5.59.8", 404 | "debug": "^4.3.4" 405 | }, 406 | "engines": { 407 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 408 | }, 409 | "funding": { 410 | "type": "opencollective", 411 | "url": "https://opencollective.com/typescript-eslint" 412 | }, 413 | "peerDependencies": { 414 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 415 | }, 416 | "peerDependenciesMeta": { 417 | "typescript": { 418 | "optional": true 419 | } 420 | } 421 | }, 422 | "node_modules/@typescript-eslint/scope-manager": { 423 | "version": "5.59.8", 424 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.8.tgz", 425 | "integrity": "sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==", 426 | "dependencies": { 427 | "@typescript-eslint/types": "5.59.8", 428 | "@typescript-eslint/visitor-keys": "5.59.8" 429 | }, 430 | "engines": { 431 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 432 | }, 433 | "funding": { 434 | "type": "opencollective", 435 | "url": "https://opencollective.com/typescript-eslint" 436 | } 437 | }, 438 | "node_modules/@typescript-eslint/types": { 439 | "version": "5.59.8", 440 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.8.tgz", 441 | "integrity": "sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==", 442 | "engines": { 443 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 444 | }, 445 | "funding": { 446 | "type": "opencollective", 447 | "url": "https://opencollective.com/typescript-eslint" 448 | } 449 | }, 450 | "node_modules/@typescript-eslint/typescript-estree": { 451 | "version": "5.59.8", 452 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz", 453 | "integrity": "sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==", 454 | "dependencies": { 455 | "@typescript-eslint/types": "5.59.8", 456 | "@typescript-eslint/visitor-keys": "5.59.8", 457 | "debug": "^4.3.4", 458 | "globby": "^11.1.0", 459 | "is-glob": "^4.0.3", 460 | "semver": "^7.3.7", 461 | "tsutils": "^3.21.0" 462 | }, 463 | "engines": { 464 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 465 | }, 466 | "funding": { 467 | "type": "opencollective", 468 | "url": "https://opencollective.com/typescript-eslint" 469 | }, 470 | "peerDependenciesMeta": { 471 | "typescript": { 472 | "optional": true 473 | } 474 | } 475 | }, 476 | "node_modules/@typescript-eslint/visitor-keys": { 477 | "version": "5.59.8", 478 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz", 479 | "integrity": "sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==", 480 | "dependencies": { 481 | "@typescript-eslint/types": "5.59.8", 482 | "eslint-visitor-keys": "^3.3.0" 483 | }, 484 | "engines": { 485 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 486 | }, 487 | "funding": { 488 | "type": "opencollective", 489 | "url": "https://opencollective.com/typescript-eslint" 490 | } 491 | }, 492 | "node_modules/acorn": { 493 | "version": "8.8.2", 494 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 495 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 496 | "bin": { 497 | "acorn": "bin/acorn" 498 | }, 499 | "engines": { 500 | "node": ">=0.4.0" 501 | } 502 | }, 503 | "node_modules/acorn-jsx": { 504 | "version": "5.3.2", 505 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 506 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 507 | "peerDependencies": { 508 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 509 | } 510 | }, 511 | "node_modules/ajv": { 512 | "version": "6.12.6", 513 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 514 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 515 | "dependencies": { 516 | "fast-deep-equal": "^3.1.1", 517 | "fast-json-stable-stringify": "^2.0.0", 518 | "json-schema-traverse": "^0.4.1", 519 | "uri-js": "^4.2.2" 520 | }, 521 | "funding": { 522 | "type": "github", 523 | "url": "https://github.com/sponsors/epoberezkin" 524 | } 525 | }, 526 | "node_modules/ansi-regex": { 527 | "version": "5.0.1", 528 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 529 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 530 | "engines": { 531 | "node": ">=8" 532 | } 533 | }, 534 | "node_modules/ansi-styles": { 535 | "version": "4.3.0", 536 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 537 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 538 | "dependencies": { 539 | "color-convert": "^2.0.1" 540 | }, 541 | "engines": { 542 | "node": ">=8" 543 | }, 544 | "funding": { 545 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 546 | } 547 | }, 548 | "node_modules/any-promise": { 549 | "version": "1.3.0", 550 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 551 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 552 | }, 553 | "node_modules/anymatch": { 554 | "version": "3.1.3", 555 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 556 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 557 | "dependencies": { 558 | "normalize-path": "^3.0.0", 559 | "picomatch": "^2.0.4" 560 | }, 561 | "engines": { 562 | "node": ">= 8" 563 | } 564 | }, 565 | "node_modules/arg": { 566 | "version": "5.0.2", 567 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 568 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 569 | }, 570 | "node_modules/argparse": { 571 | "version": "2.0.1", 572 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 573 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 574 | }, 575 | "node_modules/aria-query": { 576 | "version": "5.1.3", 577 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 578 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 579 | "dependencies": { 580 | "deep-equal": "^2.0.5" 581 | } 582 | }, 583 | "node_modules/array-buffer-byte-length": { 584 | "version": "1.0.0", 585 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 586 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 587 | "dependencies": { 588 | "call-bind": "^1.0.2", 589 | "is-array-buffer": "^3.0.1" 590 | }, 591 | "funding": { 592 | "url": "https://github.com/sponsors/ljharb" 593 | } 594 | }, 595 | "node_modules/array-includes": { 596 | "version": "3.1.6", 597 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 598 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 599 | "dependencies": { 600 | "call-bind": "^1.0.2", 601 | "define-properties": "^1.1.4", 602 | "es-abstract": "^1.20.4", 603 | "get-intrinsic": "^1.1.3", 604 | "is-string": "^1.0.7" 605 | }, 606 | "engines": { 607 | "node": ">= 0.4" 608 | }, 609 | "funding": { 610 | "url": "https://github.com/sponsors/ljharb" 611 | } 612 | }, 613 | "node_modules/array-union": { 614 | "version": "2.1.0", 615 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 616 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 617 | "engines": { 618 | "node": ">=8" 619 | } 620 | }, 621 | "node_modules/array.prototype.flat": { 622 | "version": "1.3.1", 623 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 624 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 625 | "dependencies": { 626 | "call-bind": "^1.0.2", 627 | "define-properties": "^1.1.4", 628 | "es-abstract": "^1.20.4", 629 | "es-shim-unscopables": "^1.0.0" 630 | }, 631 | "engines": { 632 | "node": ">= 0.4" 633 | }, 634 | "funding": { 635 | "url": "https://github.com/sponsors/ljharb" 636 | } 637 | }, 638 | "node_modules/array.prototype.flatmap": { 639 | "version": "1.3.1", 640 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 641 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 642 | "dependencies": { 643 | "call-bind": "^1.0.2", 644 | "define-properties": "^1.1.4", 645 | "es-abstract": "^1.20.4", 646 | "es-shim-unscopables": "^1.0.0" 647 | }, 648 | "engines": { 649 | "node": ">= 0.4" 650 | }, 651 | "funding": { 652 | "url": "https://github.com/sponsors/ljharb" 653 | } 654 | }, 655 | "node_modules/array.prototype.tosorted": { 656 | "version": "1.1.1", 657 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 658 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 659 | "dependencies": { 660 | "call-bind": "^1.0.2", 661 | "define-properties": "^1.1.4", 662 | "es-abstract": "^1.20.4", 663 | "es-shim-unscopables": "^1.0.0", 664 | "get-intrinsic": "^1.1.3" 665 | } 666 | }, 667 | "node_modules/ast-types-flow": { 668 | "version": "0.0.7", 669 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 670 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 671 | }, 672 | "node_modules/autoprefixer": { 673 | "version": "10.4.14", 674 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", 675 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", 676 | "funding": [ 677 | { 678 | "type": "opencollective", 679 | "url": "https://opencollective.com/postcss/" 680 | }, 681 | { 682 | "type": "tidelift", 683 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 684 | } 685 | ], 686 | "dependencies": { 687 | "browserslist": "^4.21.5", 688 | "caniuse-lite": "^1.0.30001464", 689 | "fraction.js": "^4.2.0", 690 | "normalize-range": "^0.1.2", 691 | "picocolors": "^1.0.0", 692 | "postcss-value-parser": "^4.2.0" 693 | }, 694 | "bin": { 695 | "autoprefixer": "bin/autoprefixer" 696 | }, 697 | "engines": { 698 | "node": "^10 || ^12 || >=14" 699 | }, 700 | "peerDependencies": { 701 | "postcss": "^8.1.0" 702 | } 703 | }, 704 | "node_modules/available-typed-arrays": { 705 | "version": "1.0.5", 706 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 707 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 708 | "engines": { 709 | "node": ">= 0.4" 710 | }, 711 | "funding": { 712 | "url": "https://github.com/sponsors/ljharb" 713 | } 714 | }, 715 | "node_modules/axe-core": { 716 | "version": "4.7.2", 717 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", 718 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", 719 | "engines": { 720 | "node": ">=4" 721 | } 722 | }, 723 | "node_modules/axobject-query": { 724 | "version": "3.1.1", 725 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 726 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 727 | "dependencies": { 728 | "deep-equal": "^2.0.5" 729 | } 730 | }, 731 | "node_modules/balanced-match": { 732 | "version": "1.0.2", 733 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 734 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 735 | }, 736 | "node_modules/big-integer": { 737 | "version": "1.6.51", 738 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 739 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 740 | "engines": { 741 | "node": ">=0.6" 742 | } 743 | }, 744 | "node_modules/binary-extensions": { 745 | "version": "2.2.0", 746 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 747 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 748 | "engines": { 749 | "node": ">=8" 750 | } 751 | }, 752 | "node_modules/bplist-parser": { 753 | "version": "0.2.0", 754 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 755 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 756 | "dependencies": { 757 | "big-integer": "^1.6.44" 758 | }, 759 | "engines": { 760 | "node": ">= 5.10.0" 761 | } 762 | }, 763 | "node_modules/brace-expansion": { 764 | "version": "1.1.11", 765 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 766 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 767 | "dependencies": { 768 | "balanced-match": "^1.0.0", 769 | "concat-map": "0.0.1" 770 | } 771 | }, 772 | "node_modules/braces": { 773 | "version": "3.0.2", 774 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 775 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 776 | "dependencies": { 777 | "fill-range": "^7.0.1" 778 | }, 779 | "engines": { 780 | "node": ">=8" 781 | } 782 | }, 783 | "node_modules/browserslist": { 784 | "version": "4.21.7", 785 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz", 786 | "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==", 787 | "funding": [ 788 | { 789 | "type": "opencollective", 790 | "url": "https://opencollective.com/browserslist" 791 | }, 792 | { 793 | "type": "tidelift", 794 | "url": "https://tidelift.com/funding/github/npm/browserslist" 795 | }, 796 | { 797 | "type": "github", 798 | "url": "https://github.com/sponsors/ai" 799 | } 800 | ], 801 | "dependencies": { 802 | "caniuse-lite": "^1.0.30001489", 803 | "electron-to-chromium": "^1.4.411", 804 | "node-releases": "^2.0.12", 805 | "update-browserslist-db": "^1.0.11" 806 | }, 807 | "bin": { 808 | "browserslist": "cli.js" 809 | }, 810 | "engines": { 811 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 812 | } 813 | }, 814 | "node_modules/bundle-name": { 815 | "version": "3.0.0", 816 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 817 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 818 | "dependencies": { 819 | "run-applescript": "^5.0.0" 820 | }, 821 | "engines": { 822 | "node": ">=12" 823 | }, 824 | "funding": { 825 | "url": "https://github.com/sponsors/sindresorhus" 826 | } 827 | }, 828 | "node_modules/busboy": { 829 | "version": "1.6.0", 830 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 831 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 832 | "dependencies": { 833 | "streamsearch": "^1.1.0" 834 | }, 835 | "engines": { 836 | "node": ">=10.16.0" 837 | } 838 | }, 839 | "node_modules/call-bind": { 840 | "version": "1.0.2", 841 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 842 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 843 | "dependencies": { 844 | "function-bind": "^1.1.1", 845 | "get-intrinsic": "^1.0.2" 846 | }, 847 | "funding": { 848 | "url": "https://github.com/sponsors/ljharb" 849 | } 850 | }, 851 | "node_modules/callsites": { 852 | "version": "3.1.0", 853 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 854 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 855 | "engines": { 856 | "node": ">=6" 857 | } 858 | }, 859 | "node_modules/camelcase-css": { 860 | "version": "2.0.1", 861 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 862 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 863 | "engines": { 864 | "node": ">= 6" 865 | } 866 | }, 867 | "node_modules/caniuse-lite": { 868 | "version": "1.0.30001494", 869 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001494.tgz", 870 | "integrity": "sha512-sY2B5Qyl46ZzfYDegrl8GBCzdawSLT4ThM9b9F+aDYUrAG2zCOyMbd2Tq34mS1g4ZKBfjRlzOohQMxx28x6wJg==", 871 | "funding": [ 872 | { 873 | "type": "opencollective", 874 | "url": "https://opencollective.com/browserslist" 875 | }, 876 | { 877 | "type": "tidelift", 878 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 879 | }, 880 | { 881 | "type": "github", 882 | "url": "https://github.com/sponsors/ai" 883 | } 884 | ] 885 | }, 886 | "node_modules/chalk": { 887 | "version": "4.1.2", 888 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 889 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 890 | "dependencies": { 891 | "ansi-styles": "^4.1.0", 892 | "supports-color": "^7.1.0" 893 | }, 894 | "engines": { 895 | "node": ">=10" 896 | }, 897 | "funding": { 898 | "url": "https://github.com/chalk/chalk?sponsor=1" 899 | } 900 | }, 901 | "node_modules/chokidar": { 902 | "version": "3.5.3", 903 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 904 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 905 | "funding": [ 906 | { 907 | "type": "individual", 908 | "url": "https://paulmillr.com/funding/" 909 | } 910 | ], 911 | "dependencies": { 912 | "anymatch": "~3.1.2", 913 | "braces": "~3.0.2", 914 | "glob-parent": "~5.1.2", 915 | "is-binary-path": "~2.1.0", 916 | "is-glob": "~4.0.1", 917 | "normalize-path": "~3.0.0", 918 | "readdirp": "~3.6.0" 919 | }, 920 | "engines": { 921 | "node": ">= 8.10.0" 922 | }, 923 | "optionalDependencies": { 924 | "fsevents": "~2.3.2" 925 | } 926 | }, 927 | "node_modules/chokidar/node_modules/glob-parent": { 928 | "version": "5.1.2", 929 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 930 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 931 | "dependencies": { 932 | "is-glob": "^4.0.1" 933 | }, 934 | "engines": { 935 | "node": ">= 6" 936 | } 937 | }, 938 | "node_modules/client-only": { 939 | "version": "0.0.1", 940 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 941 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 942 | }, 943 | "node_modules/color-convert": { 944 | "version": "2.0.1", 945 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 946 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 947 | "dependencies": { 948 | "color-name": "~1.1.4" 949 | }, 950 | "engines": { 951 | "node": ">=7.0.0" 952 | } 953 | }, 954 | "node_modules/color-name": { 955 | "version": "1.1.4", 956 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 957 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 958 | }, 959 | "node_modules/commander": { 960 | "version": "4.1.1", 961 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 962 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 963 | "engines": { 964 | "node": ">= 6" 965 | } 966 | }, 967 | "node_modules/concat-map": { 968 | "version": "0.0.1", 969 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 970 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 971 | }, 972 | "node_modules/cross-spawn": { 973 | "version": "7.0.3", 974 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 975 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 976 | "dependencies": { 977 | "path-key": "^3.1.0", 978 | "shebang-command": "^2.0.0", 979 | "which": "^2.0.1" 980 | }, 981 | "engines": { 982 | "node": ">= 8" 983 | } 984 | }, 985 | "node_modules/cssesc": { 986 | "version": "3.0.0", 987 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 988 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 989 | "bin": { 990 | "cssesc": "bin/cssesc" 991 | }, 992 | "engines": { 993 | "node": ">=4" 994 | } 995 | }, 996 | "node_modules/damerau-levenshtein": { 997 | "version": "1.0.8", 998 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 999 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1000 | }, 1001 | "node_modules/debug": { 1002 | "version": "4.3.4", 1003 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1004 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1005 | "dependencies": { 1006 | "ms": "2.1.2" 1007 | }, 1008 | "engines": { 1009 | "node": ">=6.0" 1010 | }, 1011 | "peerDependenciesMeta": { 1012 | "supports-color": { 1013 | "optional": true 1014 | } 1015 | } 1016 | }, 1017 | "node_modules/deep-equal": { 1018 | "version": "2.2.1", 1019 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", 1020 | "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", 1021 | "dependencies": { 1022 | "array-buffer-byte-length": "^1.0.0", 1023 | "call-bind": "^1.0.2", 1024 | "es-get-iterator": "^1.1.3", 1025 | "get-intrinsic": "^1.2.0", 1026 | "is-arguments": "^1.1.1", 1027 | "is-array-buffer": "^3.0.2", 1028 | "is-date-object": "^1.0.5", 1029 | "is-regex": "^1.1.4", 1030 | "is-shared-array-buffer": "^1.0.2", 1031 | "isarray": "^2.0.5", 1032 | "object-is": "^1.1.5", 1033 | "object-keys": "^1.1.1", 1034 | "object.assign": "^4.1.4", 1035 | "regexp.prototype.flags": "^1.5.0", 1036 | "side-channel": "^1.0.4", 1037 | "which-boxed-primitive": "^1.0.2", 1038 | "which-collection": "^1.0.1", 1039 | "which-typed-array": "^1.1.9" 1040 | }, 1041 | "funding": { 1042 | "url": "https://github.com/sponsors/ljharb" 1043 | } 1044 | }, 1045 | "node_modules/deep-is": { 1046 | "version": "0.1.4", 1047 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1048 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1049 | }, 1050 | "node_modules/default-browser": { 1051 | "version": "4.0.0", 1052 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 1053 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 1054 | "dependencies": { 1055 | "bundle-name": "^3.0.0", 1056 | "default-browser-id": "^3.0.0", 1057 | "execa": "^7.1.1", 1058 | "titleize": "^3.0.0" 1059 | }, 1060 | "engines": { 1061 | "node": ">=14.16" 1062 | }, 1063 | "funding": { 1064 | "url": "https://github.com/sponsors/sindresorhus" 1065 | } 1066 | }, 1067 | "node_modules/default-browser-id": { 1068 | "version": "3.0.0", 1069 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 1070 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 1071 | "dependencies": { 1072 | "bplist-parser": "^0.2.0", 1073 | "untildify": "^4.0.0" 1074 | }, 1075 | "engines": { 1076 | "node": ">=12" 1077 | }, 1078 | "funding": { 1079 | "url": "https://github.com/sponsors/sindresorhus" 1080 | } 1081 | }, 1082 | "node_modules/define-lazy-prop": { 1083 | "version": "3.0.0", 1084 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 1085 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 1086 | "engines": { 1087 | "node": ">=12" 1088 | }, 1089 | "funding": { 1090 | "url": "https://github.com/sponsors/sindresorhus" 1091 | } 1092 | }, 1093 | "node_modules/define-properties": { 1094 | "version": "1.2.0", 1095 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1096 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1097 | "dependencies": { 1098 | "has-property-descriptors": "^1.0.0", 1099 | "object-keys": "^1.1.1" 1100 | }, 1101 | "engines": { 1102 | "node": ">= 0.4" 1103 | }, 1104 | "funding": { 1105 | "url": "https://github.com/sponsors/ljharb" 1106 | } 1107 | }, 1108 | "node_modules/didyoumean": { 1109 | "version": "1.2.2", 1110 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1111 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1112 | }, 1113 | "node_modules/dir-glob": { 1114 | "version": "3.0.1", 1115 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1116 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1117 | "dependencies": { 1118 | "path-type": "^4.0.0" 1119 | }, 1120 | "engines": { 1121 | "node": ">=8" 1122 | } 1123 | }, 1124 | "node_modules/dlv": { 1125 | "version": "1.1.3", 1126 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1127 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1128 | }, 1129 | "node_modules/doctrine": { 1130 | "version": "3.0.0", 1131 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1132 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1133 | "dependencies": { 1134 | "esutils": "^2.0.2" 1135 | }, 1136 | "engines": { 1137 | "node": ">=6.0.0" 1138 | } 1139 | }, 1140 | "node_modules/electron-to-chromium": { 1141 | "version": "1.4.419", 1142 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.419.tgz", 1143 | "integrity": "sha512-jdie3RiEgygvDTyS2sgjq71B36q2cDSBfPlwzUyuOrfYTNoYWyBxxjGJV/HAu3A2hB0Y+HesvCVkVAFoCKwCSw==" 1144 | }, 1145 | "node_modules/emoji-regex": { 1146 | "version": "9.2.2", 1147 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1148 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1149 | }, 1150 | "node_modules/enhanced-resolve": { 1151 | "version": "5.14.1", 1152 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", 1153 | "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", 1154 | "dependencies": { 1155 | "graceful-fs": "^4.2.4", 1156 | "tapable": "^2.2.0" 1157 | }, 1158 | "engines": { 1159 | "node": ">=10.13.0" 1160 | } 1161 | }, 1162 | "node_modules/es-abstract": { 1163 | "version": "1.21.2", 1164 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1165 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1166 | "dependencies": { 1167 | "array-buffer-byte-length": "^1.0.0", 1168 | "available-typed-arrays": "^1.0.5", 1169 | "call-bind": "^1.0.2", 1170 | "es-set-tostringtag": "^2.0.1", 1171 | "es-to-primitive": "^1.2.1", 1172 | "function.prototype.name": "^1.1.5", 1173 | "get-intrinsic": "^1.2.0", 1174 | "get-symbol-description": "^1.0.0", 1175 | "globalthis": "^1.0.3", 1176 | "gopd": "^1.0.1", 1177 | "has": "^1.0.3", 1178 | "has-property-descriptors": "^1.0.0", 1179 | "has-proto": "^1.0.1", 1180 | "has-symbols": "^1.0.3", 1181 | "internal-slot": "^1.0.5", 1182 | "is-array-buffer": "^3.0.2", 1183 | "is-callable": "^1.2.7", 1184 | "is-negative-zero": "^2.0.2", 1185 | "is-regex": "^1.1.4", 1186 | "is-shared-array-buffer": "^1.0.2", 1187 | "is-string": "^1.0.7", 1188 | "is-typed-array": "^1.1.10", 1189 | "is-weakref": "^1.0.2", 1190 | "object-inspect": "^1.12.3", 1191 | "object-keys": "^1.1.1", 1192 | "object.assign": "^4.1.4", 1193 | "regexp.prototype.flags": "^1.4.3", 1194 | "safe-regex-test": "^1.0.0", 1195 | "string.prototype.trim": "^1.2.7", 1196 | "string.prototype.trimend": "^1.0.6", 1197 | "string.prototype.trimstart": "^1.0.6", 1198 | "typed-array-length": "^1.0.4", 1199 | "unbox-primitive": "^1.0.2", 1200 | "which-typed-array": "^1.1.9" 1201 | }, 1202 | "engines": { 1203 | "node": ">= 0.4" 1204 | }, 1205 | "funding": { 1206 | "url": "https://github.com/sponsors/ljharb" 1207 | } 1208 | }, 1209 | "node_modules/es-get-iterator": { 1210 | "version": "1.1.3", 1211 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1212 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1213 | "dependencies": { 1214 | "call-bind": "^1.0.2", 1215 | "get-intrinsic": "^1.1.3", 1216 | "has-symbols": "^1.0.3", 1217 | "is-arguments": "^1.1.1", 1218 | "is-map": "^2.0.2", 1219 | "is-set": "^2.0.2", 1220 | "is-string": "^1.0.7", 1221 | "isarray": "^2.0.5", 1222 | "stop-iteration-iterator": "^1.0.0" 1223 | }, 1224 | "funding": { 1225 | "url": "https://github.com/sponsors/ljharb" 1226 | } 1227 | }, 1228 | "node_modules/es-set-tostringtag": { 1229 | "version": "2.0.1", 1230 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1231 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1232 | "dependencies": { 1233 | "get-intrinsic": "^1.1.3", 1234 | "has": "^1.0.3", 1235 | "has-tostringtag": "^1.0.0" 1236 | }, 1237 | "engines": { 1238 | "node": ">= 0.4" 1239 | } 1240 | }, 1241 | "node_modules/es-shim-unscopables": { 1242 | "version": "1.0.0", 1243 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1244 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1245 | "dependencies": { 1246 | "has": "^1.0.3" 1247 | } 1248 | }, 1249 | "node_modules/es-to-primitive": { 1250 | "version": "1.2.1", 1251 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1252 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1253 | "dependencies": { 1254 | "is-callable": "^1.1.4", 1255 | "is-date-object": "^1.0.1", 1256 | "is-symbol": "^1.0.2" 1257 | }, 1258 | "engines": { 1259 | "node": ">= 0.4" 1260 | }, 1261 | "funding": { 1262 | "url": "https://github.com/sponsors/ljharb" 1263 | } 1264 | }, 1265 | "node_modules/escalade": { 1266 | "version": "3.1.1", 1267 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1268 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1269 | "engines": { 1270 | "node": ">=6" 1271 | } 1272 | }, 1273 | "node_modules/escape-string-regexp": { 1274 | "version": "4.0.0", 1275 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1276 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1277 | "engines": { 1278 | "node": ">=10" 1279 | }, 1280 | "funding": { 1281 | "url": "https://github.com/sponsors/sindresorhus" 1282 | } 1283 | }, 1284 | "node_modules/eslint": { 1285 | "version": "8.42.0", 1286 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", 1287 | "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", 1288 | "dependencies": { 1289 | "@eslint-community/eslint-utils": "^4.2.0", 1290 | "@eslint-community/regexpp": "^4.4.0", 1291 | "@eslint/eslintrc": "^2.0.3", 1292 | "@eslint/js": "8.42.0", 1293 | "@humanwhocodes/config-array": "^0.11.10", 1294 | "@humanwhocodes/module-importer": "^1.0.1", 1295 | "@nodelib/fs.walk": "^1.2.8", 1296 | "ajv": "^6.10.0", 1297 | "chalk": "^4.0.0", 1298 | "cross-spawn": "^7.0.2", 1299 | "debug": "^4.3.2", 1300 | "doctrine": "^3.0.0", 1301 | "escape-string-regexp": "^4.0.0", 1302 | "eslint-scope": "^7.2.0", 1303 | "eslint-visitor-keys": "^3.4.1", 1304 | "espree": "^9.5.2", 1305 | "esquery": "^1.4.2", 1306 | "esutils": "^2.0.2", 1307 | "fast-deep-equal": "^3.1.3", 1308 | "file-entry-cache": "^6.0.1", 1309 | "find-up": "^5.0.0", 1310 | "glob-parent": "^6.0.2", 1311 | "globals": "^13.19.0", 1312 | "graphemer": "^1.4.0", 1313 | "ignore": "^5.2.0", 1314 | "import-fresh": "^3.0.0", 1315 | "imurmurhash": "^0.1.4", 1316 | "is-glob": "^4.0.0", 1317 | "is-path-inside": "^3.0.3", 1318 | "js-yaml": "^4.1.0", 1319 | "json-stable-stringify-without-jsonify": "^1.0.1", 1320 | "levn": "^0.4.1", 1321 | "lodash.merge": "^4.6.2", 1322 | "minimatch": "^3.1.2", 1323 | "natural-compare": "^1.4.0", 1324 | "optionator": "^0.9.1", 1325 | "strip-ansi": "^6.0.1", 1326 | "strip-json-comments": "^3.1.0", 1327 | "text-table": "^0.2.0" 1328 | }, 1329 | "bin": { 1330 | "eslint": "bin/eslint.js" 1331 | }, 1332 | "engines": { 1333 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1334 | }, 1335 | "funding": { 1336 | "url": "https://opencollective.com/eslint" 1337 | } 1338 | }, 1339 | "node_modules/eslint-config-next": { 1340 | "version": "13.4.4", 1341 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.4.tgz", 1342 | "integrity": "sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==", 1343 | "dependencies": { 1344 | "@next/eslint-plugin-next": "13.4.4", 1345 | "@rushstack/eslint-patch": "^1.1.3", 1346 | "@typescript-eslint/parser": "^5.42.0", 1347 | "eslint-import-resolver-node": "^0.3.6", 1348 | "eslint-import-resolver-typescript": "^3.5.2", 1349 | "eslint-plugin-import": "^2.26.0", 1350 | "eslint-plugin-jsx-a11y": "^6.5.1", 1351 | "eslint-plugin-react": "^7.31.7", 1352 | "eslint-plugin-react-hooks": "^4.5.0" 1353 | }, 1354 | "peerDependencies": { 1355 | "eslint": "^7.23.0 || ^8.0.0", 1356 | "typescript": ">=3.3.1" 1357 | }, 1358 | "peerDependenciesMeta": { 1359 | "typescript": { 1360 | "optional": true 1361 | } 1362 | } 1363 | }, 1364 | "node_modules/eslint-import-resolver-node": { 1365 | "version": "0.3.7", 1366 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1367 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1368 | "dependencies": { 1369 | "debug": "^3.2.7", 1370 | "is-core-module": "^2.11.0", 1371 | "resolve": "^1.22.1" 1372 | } 1373 | }, 1374 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1375 | "version": "3.2.7", 1376 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1377 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1378 | "dependencies": { 1379 | "ms": "^2.1.1" 1380 | } 1381 | }, 1382 | "node_modules/eslint-import-resolver-typescript": { 1383 | "version": "3.5.5", 1384 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1385 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1386 | "dependencies": { 1387 | "debug": "^4.3.4", 1388 | "enhanced-resolve": "^5.12.0", 1389 | "eslint-module-utils": "^2.7.4", 1390 | "get-tsconfig": "^4.5.0", 1391 | "globby": "^13.1.3", 1392 | "is-core-module": "^2.11.0", 1393 | "is-glob": "^4.0.3", 1394 | "synckit": "^0.8.5" 1395 | }, 1396 | "engines": { 1397 | "node": "^14.18.0 || >=16.0.0" 1398 | }, 1399 | "funding": { 1400 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1401 | }, 1402 | "peerDependencies": { 1403 | "eslint": "*", 1404 | "eslint-plugin-import": "*" 1405 | } 1406 | }, 1407 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1408 | "version": "13.1.4", 1409 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1410 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1411 | "dependencies": { 1412 | "dir-glob": "^3.0.1", 1413 | "fast-glob": "^3.2.11", 1414 | "ignore": "^5.2.0", 1415 | "merge2": "^1.4.1", 1416 | "slash": "^4.0.0" 1417 | }, 1418 | "engines": { 1419 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1420 | }, 1421 | "funding": { 1422 | "url": "https://github.com/sponsors/sindresorhus" 1423 | } 1424 | }, 1425 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1426 | "version": "4.0.0", 1427 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1428 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1429 | "engines": { 1430 | "node": ">=12" 1431 | }, 1432 | "funding": { 1433 | "url": "https://github.com/sponsors/sindresorhus" 1434 | } 1435 | }, 1436 | "node_modules/eslint-module-utils": { 1437 | "version": "2.8.0", 1438 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1439 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1440 | "dependencies": { 1441 | "debug": "^3.2.7" 1442 | }, 1443 | "engines": { 1444 | "node": ">=4" 1445 | }, 1446 | "peerDependenciesMeta": { 1447 | "eslint": { 1448 | "optional": true 1449 | } 1450 | } 1451 | }, 1452 | "node_modules/eslint-module-utils/node_modules/debug": { 1453 | "version": "3.2.7", 1454 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1455 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1456 | "dependencies": { 1457 | "ms": "^2.1.1" 1458 | } 1459 | }, 1460 | "node_modules/eslint-plugin-import": { 1461 | "version": "2.27.5", 1462 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1463 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1464 | "dependencies": { 1465 | "array-includes": "^3.1.6", 1466 | "array.prototype.flat": "^1.3.1", 1467 | "array.prototype.flatmap": "^1.3.1", 1468 | "debug": "^3.2.7", 1469 | "doctrine": "^2.1.0", 1470 | "eslint-import-resolver-node": "^0.3.7", 1471 | "eslint-module-utils": "^2.7.4", 1472 | "has": "^1.0.3", 1473 | "is-core-module": "^2.11.0", 1474 | "is-glob": "^4.0.3", 1475 | "minimatch": "^3.1.2", 1476 | "object.values": "^1.1.6", 1477 | "resolve": "^1.22.1", 1478 | "semver": "^6.3.0", 1479 | "tsconfig-paths": "^3.14.1" 1480 | }, 1481 | "engines": { 1482 | "node": ">=4" 1483 | }, 1484 | "peerDependencies": { 1485 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1486 | } 1487 | }, 1488 | "node_modules/eslint-plugin-import/node_modules/debug": { 1489 | "version": "3.2.7", 1490 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1491 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1492 | "dependencies": { 1493 | "ms": "^2.1.1" 1494 | } 1495 | }, 1496 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1497 | "version": "2.1.0", 1498 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1499 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1500 | "dependencies": { 1501 | "esutils": "^2.0.2" 1502 | }, 1503 | "engines": { 1504 | "node": ">=0.10.0" 1505 | } 1506 | }, 1507 | "node_modules/eslint-plugin-import/node_modules/semver": { 1508 | "version": "6.3.0", 1509 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1510 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1511 | "bin": { 1512 | "semver": "bin/semver.js" 1513 | } 1514 | }, 1515 | "node_modules/eslint-plugin-jsx-a11y": { 1516 | "version": "6.7.1", 1517 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1518 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1519 | "dependencies": { 1520 | "@babel/runtime": "^7.20.7", 1521 | "aria-query": "^5.1.3", 1522 | "array-includes": "^3.1.6", 1523 | "array.prototype.flatmap": "^1.3.1", 1524 | "ast-types-flow": "^0.0.7", 1525 | "axe-core": "^4.6.2", 1526 | "axobject-query": "^3.1.1", 1527 | "damerau-levenshtein": "^1.0.8", 1528 | "emoji-regex": "^9.2.2", 1529 | "has": "^1.0.3", 1530 | "jsx-ast-utils": "^3.3.3", 1531 | "language-tags": "=1.0.5", 1532 | "minimatch": "^3.1.2", 1533 | "object.entries": "^1.1.6", 1534 | "object.fromentries": "^2.0.6", 1535 | "semver": "^6.3.0" 1536 | }, 1537 | "engines": { 1538 | "node": ">=4.0" 1539 | }, 1540 | "peerDependencies": { 1541 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1542 | } 1543 | }, 1544 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1545 | "version": "6.3.0", 1546 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1547 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1548 | "bin": { 1549 | "semver": "bin/semver.js" 1550 | } 1551 | }, 1552 | "node_modules/eslint-plugin-react": { 1553 | "version": "7.32.2", 1554 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1555 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1556 | "dependencies": { 1557 | "array-includes": "^3.1.6", 1558 | "array.prototype.flatmap": "^1.3.1", 1559 | "array.prototype.tosorted": "^1.1.1", 1560 | "doctrine": "^2.1.0", 1561 | "estraverse": "^5.3.0", 1562 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1563 | "minimatch": "^3.1.2", 1564 | "object.entries": "^1.1.6", 1565 | "object.fromentries": "^2.0.6", 1566 | "object.hasown": "^1.1.2", 1567 | "object.values": "^1.1.6", 1568 | "prop-types": "^15.8.1", 1569 | "resolve": "^2.0.0-next.4", 1570 | "semver": "^6.3.0", 1571 | "string.prototype.matchall": "^4.0.8" 1572 | }, 1573 | "engines": { 1574 | "node": ">=4" 1575 | }, 1576 | "peerDependencies": { 1577 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1578 | } 1579 | }, 1580 | "node_modules/eslint-plugin-react-hooks": { 1581 | "version": "4.6.0", 1582 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1583 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1584 | "engines": { 1585 | "node": ">=10" 1586 | }, 1587 | "peerDependencies": { 1588 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1589 | } 1590 | }, 1591 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1592 | "version": "2.1.0", 1593 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1594 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1595 | "dependencies": { 1596 | "esutils": "^2.0.2" 1597 | }, 1598 | "engines": { 1599 | "node": ">=0.10.0" 1600 | } 1601 | }, 1602 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1603 | "version": "2.0.0-next.4", 1604 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1605 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1606 | "dependencies": { 1607 | "is-core-module": "^2.9.0", 1608 | "path-parse": "^1.0.7", 1609 | "supports-preserve-symlinks-flag": "^1.0.0" 1610 | }, 1611 | "bin": { 1612 | "resolve": "bin/resolve" 1613 | }, 1614 | "funding": { 1615 | "url": "https://github.com/sponsors/ljharb" 1616 | } 1617 | }, 1618 | "node_modules/eslint-plugin-react/node_modules/semver": { 1619 | "version": "6.3.0", 1620 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1621 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1622 | "bin": { 1623 | "semver": "bin/semver.js" 1624 | } 1625 | }, 1626 | "node_modules/eslint-scope": { 1627 | "version": "7.2.0", 1628 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1629 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1630 | "dependencies": { 1631 | "esrecurse": "^4.3.0", 1632 | "estraverse": "^5.2.0" 1633 | }, 1634 | "engines": { 1635 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1636 | }, 1637 | "funding": { 1638 | "url": "https://opencollective.com/eslint" 1639 | } 1640 | }, 1641 | "node_modules/eslint-visitor-keys": { 1642 | "version": "3.4.1", 1643 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1644 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1645 | "engines": { 1646 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1647 | }, 1648 | "funding": { 1649 | "url": "https://opencollective.com/eslint" 1650 | } 1651 | }, 1652 | "node_modules/espree": { 1653 | "version": "9.5.2", 1654 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1655 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1656 | "dependencies": { 1657 | "acorn": "^8.8.0", 1658 | "acorn-jsx": "^5.3.2", 1659 | "eslint-visitor-keys": "^3.4.1" 1660 | }, 1661 | "engines": { 1662 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1663 | }, 1664 | "funding": { 1665 | "url": "https://opencollective.com/eslint" 1666 | } 1667 | }, 1668 | "node_modules/esquery": { 1669 | "version": "1.5.0", 1670 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1671 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1672 | "dependencies": { 1673 | "estraverse": "^5.1.0" 1674 | }, 1675 | "engines": { 1676 | "node": ">=0.10" 1677 | } 1678 | }, 1679 | "node_modules/esrecurse": { 1680 | "version": "4.3.0", 1681 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1682 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1683 | "dependencies": { 1684 | "estraverse": "^5.2.0" 1685 | }, 1686 | "engines": { 1687 | "node": ">=4.0" 1688 | } 1689 | }, 1690 | "node_modules/estraverse": { 1691 | "version": "5.3.0", 1692 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1693 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1694 | "engines": { 1695 | "node": ">=4.0" 1696 | } 1697 | }, 1698 | "node_modules/esutils": { 1699 | "version": "2.0.3", 1700 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1701 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1702 | "engines": { 1703 | "node": ">=0.10.0" 1704 | } 1705 | }, 1706 | "node_modules/execa": { 1707 | "version": "7.1.1", 1708 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1709 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1710 | "dependencies": { 1711 | "cross-spawn": "^7.0.3", 1712 | "get-stream": "^6.0.1", 1713 | "human-signals": "^4.3.0", 1714 | "is-stream": "^3.0.0", 1715 | "merge-stream": "^2.0.0", 1716 | "npm-run-path": "^5.1.0", 1717 | "onetime": "^6.0.0", 1718 | "signal-exit": "^3.0.7", 1719 | "strip-final-newline": "^3.0.0" 1720 | }, 1721 | "engines": { 1722 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1723 | }, 1724 | "funding": { 1725 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1726 | } 1727 | }, 1728 | "node_modules/fast-deep-equal": { 1729 | "version": "3.1.3", 1730 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1731 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1732 | }, 1733 | "node_modules/fast-glob": { 1734 | "version": "3.2.12", 1735 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1736 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1737 | "dependencies": { 1738 | "@nodelib/fs.stat": "^2.0.2", 1739 | "@nodelib/fs.walk": "^1.2.3", 1740 | "glob-parent": "^5.1.2", 1741 | "merge2": "^1.3.0", 1742 | "micromatch": "^4.0.4" 1743 | }, 1744 | "engines": { 1745 | "node": ">=8.6.0" 1746 | } 1747 | }, 1748 | "node_modules/fast-glob/node_modules/glob-parent": { 1749 | "version": "5.1.2", 1750 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1751 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1752 | "dependencies": { 1753 | "is-glob": "^4.0.1" 1754 | }, 1755 | "engines": { 1756 | "node": ">= 6" 1757 | } 1758 | }, 1759 | "node_modules/fast-json-stable-stringify": { 1760 | "version": "2.1.0", 1761 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1762 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1763 | }, 1764 | "node_modules/fast-levenshtein": { 1765 | "version": "2.0.6", 1766 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1767 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1768 | }, 1769 | "node_modules/fastq": { 1770 | "version": "1.15.0", 1771 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1772 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1773 | "dependencies": { 1774 | "reusify": "^1.0.4" 1775 | } 1776 | }, 1777 | "node_modules/file-entry-cache": { 1778 | "version": "6.0.1", 1779 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1780 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1781 | "dependencies": { 1782 | "flat-cache": "^3.0.4" 1783 | }, 1784 | "engines": { 1785 | "node": "^10.12.0 || >=12.0.0" 1786 | } 1787 | }, 1788 | "node_modules/fill-range": { 1789 | "version": "7.0.1", 1790 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1791 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1792 | "dependencies": { 1793 | "to-regex-range": "^5.0.1" 1794 | }, 1795 | "engines": { 1796 | "node": ">=8" 1797 | } 1798 | }, 1799 | "node_modules/find-up": { 1800 | "version": "5.0.0", 1801 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1802 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1803 | "dependencies": { 1804 | "locate-path": "^6.0.0", 1805 | "path-exists": "^4.0.0" 1806 | }, 1807 | "engines": { 1808 | "node": ">=10" 1809 | }, 1810 | "funding": { 1811 | "url": "https://github.com/sponsors/sindresorhus" 1812 | } 1813 | }, 1814 | "node_modules/flat-cache": { 1815 | "version": "3.0.4", 1816 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1817 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1818 | "dependencies": { 1819 | "flatted": "^3.1.0", 1820 | "rimraf": "^3.0.2" 1821 | }, 1822 | "engines": { 1823 | "node": "^10.12.0 || >=12.0.0" 1824 | } 1825 | }, 1826 | "node_modules/flatted": { 1827 | "version": "3.2.7", 1828 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1829 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1830 | }, 1831 | "node_modules/for-each": { 1832 | "version": "0.3.3", 1833 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1834 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1835 | "dependencies": { 1836 | "is-callable": "^1.1.3" 1837 | } 1838 | }, 1839 | "node_modules/fraction.js": { 1840 | "version": "4.2.0", 1841 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1842 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1843 | "engines": { 1844 | "node": "*" 1845 | }, 1846 | "funding": { 1847 | "type": "patreon", 1848 | "url": "https://www.patreon.com/infusion" 1849 | } 1850 | }, 1851 | "node_modules/fs.realpath": { 1852 | "version": "1.0.0", 1853 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1854 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1855 | }, 1856 | "node_modules/fsevents": { 1857 | "version": "2.3.2", 1858 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1859 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1860 | "hasInstallScript": true, 1861 | "optional": true, 1862 | "os": [ 1863 | "darwin" 1864 | ], 1865 | "engines": { 1866 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1867 | } 1868 | }, 1869 | "node_modules/function-bind": { 1870 | "version": "1.1.1", 1871 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1872 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1873 | }, 1874 | "node_modules/function.prototype.name": { 1875 | "version": "1.1.5", 1876 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1877 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1878 | "dependencies": { 1879 | "call-bind": "^1.0.2", 1880 | "define-properties": "^1.1.3", 1881 | "es-abstract": "^1.19.0", 1882 | "functions-have-names": "^1.2.2" 1883 | }, 1884 | "engines": { 1885 | "node": ">= 0.4" 1886 | }, 1887 | "funding": { 1888 | "url": "https://github.com/sponsors/ljharb" 1889 | } 1890 | }, 1891 | "node_modules/functions-have-names": { 1892 | "version": "1.2.3", 1893 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1894 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1895 | "funding": { 1896 | "url": "https://github.com/sponsors/ljharb" 1897 | } 1898 | }, 1899 | "node_modules/get-intrinsic": { 1900 | "version": "1.2.1", 1901 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 1902 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 1903 | "dependencies": { 1904 | "function-bind": "^1.1.1", 1905 | "has": "^1.0.3", 1906 | "has-proto": "^1.0.1", 1907 | "has-symbols": "^1.0.3" 1908 | }, 1909 | "funding": { 1910 | "url": "https://github.com/sponsors/ljharb" 1911 | } 1912 | }, 1913 | "node_modules/get-stream": { 1914 | "version": "6.0.1", 1915 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1916 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1917 | "engines": { 1918 | "node": ">=10" 1919 | }, 1920 | "funding": { 1921 | "url": "https://github.com/sponsors/sindresorhus" 1922 | } 1923 | }, 1924 | "node_modules/get-symbol-description": { 1925 | "version": "1.0.0", 1926 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1927 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1928 | "dependencies": { 1929 | "call-bind": "^1.0.2", 1930 | "get-intrinsic": "^1.1.1" 1931 | }, 1932 | "engines": { 1933 | "node": ">= 0.4" 1934 | }, 1935 | "funding": { 1936 | "url": "https://github.com/sponsors/ljharb" 1937 | } 1938 | }, 1939 | "node_modules/get-tsconfig": { 1940 | "version": "4.6.0", 1941 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", 1942 | "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", 1943 | "dependencies": { 1944 | "resolve-pkg-maps": "^1.0.0" 1945 | }, 1946 | "funding": { 1947 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1948 | } 1949 | }, 1950 | "node_modules/glob": { 1951 | "version": "7.1.7", 1952 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1953 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1954 | "dependencies": { 1955 | "fs.realpath": "^1.0.0", 1956 | "inflight": "^1.0.4", 1957 | "inherits": "2", 1958 | "minimatch": "^3.0.4", 1959 | "once": "^1.3.0", 1960 | "path-is-absolute": "^1.0.0" 1961 | }, 1962 | "engines": { 1963 | "node": "*" 1964 | }, 1965 | "funding": { 1966 | "url": "https://github.com/sponsors/isaacs" 1967 | } 1968 | }, 1969 | "node_modules/glob-parent": { 1970 | "version": "6.0.2", 1971 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1972 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1973 | "dependencies": { 1974 | "is-glob": "^4.0.3" 1975 | }, 1976 | "engines": { 1977 | "node": ">=10.13.0" 1978 | } 1979 | }, 1980 | "node_modules/globals": { 1981 | "version": "13.20.0", 1982 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 1983 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 1984 | "dependencies": { 1985 | "type-fest": "^0.20.2" 1986 | }, 1987 | "engines": { 1988 | "node": ">=8" 1989 | }, 1990 | "funding": { 1991 | "url": "https://github.com/sponsors/sindresorhus" 1992 | } 1993 | }, 1994 | "node_modules/globalthis": { 1995 | "version": "1.0.3", 1996 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1997 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1998 | "dependencies": { 1999 | "define-properties": "^1.1.3" 2000 | }, 2001 | "engines": { 2002 | "node": ">= 0.4" 2003 | }, 2004 | "funding": { 2005 | "url": "https://github.com/sponsors/ljharb" 2006 | } 2007 | }, 2008 | "node_modules/globby": { 2009 | "version": "11.1.0", 2010 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2011 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2012 | "dependencies": { 2013 | "array-union": "^2.1.0", 2014 | "dir-glob": "^3.0.1", 2015 | "fast-glob": "^3.2.9", 2016 | "ignore": "^5.2.0", 2017 | "merge2": "^1.4.1", 2018 | "slash": "^3.0.0" 2019 | }, 2020 | "engines": { 2021 | "node": ">=10" 2022 | }, 2023 | "funding": { 2024 | "url": "https://github.com/sponsors/sindresorhus" 2025 | } 2026 | }, 2027 | "node_modules/gopd": { 2028 | "version": "1.0.1", 2029 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2030 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2031 | "dependencies": { 2032 | "get-intrinsic": "^1.1.3" 2033 | }, 2034 | "funding": { 2035 | "url": "https://github.com/sponsors/ljharb" 2036 | } 2037 | }, 2038 | "node_modules/graceful-fs": { 2039 | "version": "4.2.11", 2040 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2041 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2042 | }, 2043 | "node_modules/graphemer": { 2044 | "version": "1.4.0", 2045 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2046 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 2047 | }, 2048 | "node_modules/has": { 2049 | "version": "1.0.3", 2050 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2051 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2052 | "dependencies": { 2053 | "function-bind": "^1.1.1" 2054 | }, 2055 | "engines": { 2056 | "node": ">= 0.4.0" 2057 | } 2058 | }, 2059 | "node_modules/has-bigints": { 2060 | "version": "1.0.2", 2061 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2062 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2063 | "funding": { 2064 | "url": "https://github.com/sponsors/ljharb" 2065 | } 2066 | }, 2067 | "node_modules/has-flag": { 2068 | "version": "4.0.0", 2069 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2070 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2071 | "engines": { 2072 | "node": ">=8" 2073 | } 2074 | }, 2075 | "node_modules/has-property-descriptors": { 2076 | "version": "1.0.0", 2077 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2078 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2079 | "dependencies": { 2080 | "get-intrinsic": "^1.1.1" 2081 | }, 2082 | "funding": { 2083 | "url": "https://github.com/sponsors/ljharb" 2084 | } 2085 | }, 2086 | "node_modules/has-proto": { 2087 | "version": "1.0.1", 2088 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2089 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2090 | "engines": { 2091 | "node": ">= 0.4" 2092 | }, 2093 | "funding": { 2094 | "url": "https://github.com/sponsors/ljharb" 2095 | } 2096 | }, 2097 | "node_modules/has-symbols": { 2098 | "version": "1.0.3", 2099 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2100 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2101 | "engines": { 2102 | "node": ">= 0.4" 2103 | }, 2104 | "funding": { 2105 | "url": "https://github.com/sponsors/ljharb" 2106 | } 2107 | }, 2108 | "node_modules/has-tostringtag": { 2109 | "version": "1.0.0", 2110 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2111 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2112 | "dependencies": { 2113 | "has-symbols": "^1.0.2" 2114 | }, 2115 | "engines": { 2116 | "node": ">= 0.4" 2117 | }, 2118 | "funding": { 2119 | "url": "https://github.com/sponsors/ljharb" 2120 | } 2121 | }, 2122 | "node_modules/human-signals": { 2123 | "version": "4.3.1", 2124 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2125 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2126 | "engines": { 2127 | "node": ">=14.18.0" 2128 | } 2129 | }, 2130 | "node_modules/ignore": { 2131 | "version": "5.2.4", 2132 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2133 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2134 | "engines": { 2135 | "node": ">= 4" 2136 | } 2137 | }, 2138 | "node_modules/import-fresh": { 2139 | "version": "3.3.0", 2140 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2141 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2142 | "dependencies": { 2143 | "parent-module": "^1.0.0", 2144 | "resolve-from": "^4.0.0" 2145 | }, 2146 | "engines": { 2147 | "node": ">=6" 2148 | }, 2149 | "funding": { 2150 | "url": "https://github.com/sponsors/sindresorhus" 2151 | } 2152 | }, 2153 | "node_modules/imurmurhash": { 2154 | "version": "0.1.4", 2155 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2156 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2157 | "engines": { 2158 | "node": ">=0.8.19" 2159 | } 2160 | }, 2161 | "node_modules/inflight": { 2162 | "version": "1.0.6", 2163 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2164 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2165 | "dependencies": { 2166 | "once": "^1.3.0", 2167 | "wrappy": "1" 2168 | } 2169 | }, 2170 | "node_modules/inherits": { 2171 | "version": "2.0.4", 2172 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2173 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2174 | }, 2175 | "node_modules/internal-slot": { 2176 | "version": "1.0.5", 2177 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2178 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2179 | "dependencies": { 2180 | "get-intrinsic": "^1.2.0", 2181 | "has": "^1.0.3", 2182 | "side-channel": "^1.0.4" 2183 | }, 2184 | "engines": { 2185 | "node": ">= 0.4" 2186 | } 2187 | }, 2188 | "node_modules/is-arguments": { 2189 | "version": "1.1.1", 2190 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2191 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2192 | "dependencies": { 2193 | "call-bind": "^1.0.2", 2194 | "has-tostringtag": "^1.0.0" 2195 | }, 2196 | "engines": { 2197 | "node": ">= 0.4" 2198 | }, 2199 | "funding": { 2200 | "url": "https://github.com/sponsors/ljharb" 2201 | } 2202 | }, 2203 | "node_modules/is-array-buffer": { 2204 | "version": "3.0.2", 2205 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2206 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2207 | "dependencies": { 2208 | "call-bind": "^1.0.2", 2209 | "get-intrinsic": "^1.2.0", 2210 | "is-typed-array": "^1.1.10" 2211 | }, 2212 | "funding": { 2213 | "url": "https://github.com/sponsors/ljharb" 2214 | } 2215 | }, 2216 | "node_modules/is-bigint": { 2217 | "version": "1.0.4", 2218 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2219 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2220 | "dependencies": { 2221 | "has-bigints": "^1.0.1" 2222 | }, 2223 | "funding": { 2224 | "url": "https://github.com/sponsors/ljharb" 2225 | } 2226 | }, 2227 | "node_modules/is-binary-path": { 2228 | "version": "2.1.0", 2229 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2230 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2231 | "dependencies": { 2232 | "binary-extensions": "^2.0.0" 2233 | }, 2234 | "engines": { 2235 | "node": ">=8" 2236 | } 2237 | }, 2238 | "node_modules/is-boolean-object": { 2239 | "version": "1.1.2", 2240 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2241 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2242 | "dependencies": { 2243 | "call-bind": "^1.0.2", 2244 | "has-tostringtag": "^1.0.0" 2245 | }, 2246 | "engines": { 2247 | "node": ">= 0.4" 2248 | }, 2249 | "funding": { 2250 | "url": "https://github.com/sponsors/ljharb" 2251 | } 2252 | }, 2253 | "node_modules/is-callable": { 2254 | "version": "1.2.7", 2255 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2256 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2257 | "engines": { 2258 | "node": ">= 0.4" 2259 | }, 2260 | "funding": { 2261 | "url": "https://github.com/sponsors/ljharb" 2262 | } 2263 | }, 2264 | "node_modules/is-core-module": { 2265 | "version": "2.12.1", 2266 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 2267 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 2268 | "dependencies": { 2269 | "has": "^1.0.3" 2270 | }, 2271 | "funding": { 2272 | "url": "https://github.com/sponsors/ljharb" 2273 | } 2274 | }, 2275 | "node_modules/is-date-object": { 2276 | "version": "1.0.5", 2277 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2278 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2279 | "dependencies": { 2280 | "has-tostringtag": "^1.0.0" 2281 | }, 2282 | "engines": { 2283 | "node": ">= 0.4" 2284 | }, 2285 | "funding": { 2286 | "url": "https://github.com/sponsors/ljharb" 2287 | } 2288 | }, 2289 | "node_modules/is-docker": { 2290 | "version": "3.0.0", 2291 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2292 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2293 | "bin": { 2294 | "is-docker": "cli.js" 2295 | }, 2296 | "engines": { 2297 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2298 | }, 2299 | "funding": { 2300 | "url": "https://github.com/sponsors/sindresorhus" 2301 | } 2302 | }, 2303 | "node_modules/is-extglob": { 2304 | "version": "2.1.1", 2305 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2306 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2307 | "engines": { 2308 | "node": ">=0.10.0" 2309 | } 2310 | }, 2311 | "node_modules/is-glob": { 2312 | "version": "4.0.3", 2313 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2314 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2315 | "dependencies": { 2316 | "is-extglob": "^2.1.1" 2317 | }, 2318 | "engines": { 2319 | "node": ">=0.10.0" 2320 | } 2321 | }, 2322 | "node_modules/is-inside-container": { 2323 | "version": "1.0.0", 2324 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2325 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2326 | "dependencies": { 2327 | "is-docker": "^3.0.0" 2328 | }, 2329 | "bin": { 2330 | "is-inside-container": "cli.js" 2331 | }, 2332 | "engines": { 2333 | "node": ">=14.16" 2334 | }, 2335 | "funding": { 2336 | "url": "https://github.com/sponsors/sindresorhus" 2337 | } 2338 | }, 2339 | "node_modules/is-map": { 2340 | "version": "2.0.2", 2341 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2342 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2343 | "funding": { 2344 | "url": "https://github.com/sponsors/ljharb" 2345 | } 2346 | }, 2347 | "node_modules/is-negative-zero": { 2348 | "version": "2.0.2", 2349 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2350 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2351 | "engines": { 2352 | "node": ">= 0.4" 2353 | }, 2354 | "funding": { 2355 | "url": "https://github.com/sponsors/ljharb" 2356 | } 2357 | }, 2358 | "node_modules/is-number": { 2359 | "version": "7.0.0", 2360 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2361 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2362 | "engines": { 2363 | "node": ">=0.12.0" 2364 | } 2365 | }, 2366 | "node_modules/is-number-object": { 2367 | "version": "1.0.7", 2368 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2369 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2370 | "dependencies": { 2371 | "has-tostringtag": "^1.0.0" 2372 | }, 2373 | "engines": { 2374 | "node": ">= 0.4" 2375 | }, 2376 | "funding": { 2377 | "url": "https://github.com/sponsors/ljharb" 2378 | } 2379 | }, 2380 | "node_modules/is-path-inside": { 2381 | "version": "3.0.3", 2382 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2383 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2384 | "engines": { 2385 | "node": ">=8" 2386 | } 2387 | }, 2388 | "node_modules/is-regex": { 2389 | "version": "1.1.4", 2390 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2391 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2392 | "dependencies": { 2393 | "call-bind": "^1.0.2", 2394 | "has-tostringtag": "^1.0.0" 2395 | }, 2396 | "engines": { 2397 | "node": ">= 0.4" 2398 | }, 2399 | "funding": { 2400 | "url": "https://github.com/sponsors/ljharb" 2401 | } 2402 | }, 2403 | "node_modules/is-set": { 2404 | "version": "2.0.2", 2405 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2406 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2407 | "funding": { 2408 | "url": "https://github.com/sponsors/ljharb" 2409 | } 2410 | }, 2411 | "node_modules/is-shared-array-buffer": { 2412 | "version": "1.0.2", 2413 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2414 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2415 | "dependencies": { 2416 | "call-bind": "^1.0.2" 2417 | }, 2418 | "funding": { 2419 | "url": "https://github.com/sponsors/ljharb" 2420 | } 2421 | }, 2422 | "node_modules/is-stream": { 2423 | "version": "3.0.0", 2424 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2425 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2426 | "engines": { 2427 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2428 | }, 2429 | "funding": { 2430 | "url": "https://github.com/sponsors/sindresorhus" 2431 | } 2432 | }, 2433 | "node_modules/is-string": { 2434 | "version": "1.0.7", 2435 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2436 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2437 | "dependencies": { 2438 | "has-tostringtag": "^1.0.0" 2439 | }, 2440 | "engines": { 2441 | "node": ">= 0.4" 2442 | }, 2443 | "funding": { 2444 | "url": "https://github.com/sponsors/ljharb" 2445 | } 2446 | }, 2447 | "node_modules/is-symbol": { 2448 | "version": "1.0.4", 2449 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2450 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2451 | "dependencies": { 2452 | "has-symbols": "^1.0.2" 2453 | }, 2454 | "engines": { 2455 | "node": ">= 0.4" 2456 | }, 2457 | "funding": { 2458 | "url": "https://github.com/sponsors/ljharb" 2459 | } 2460 | }, 2461 | "node_modules/is-typed-array": { 2462 | "version": "1.1.10", 2463 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2464 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2465 | "dependencies": { 2466 | "available-typed-arrays": "^1.0.5", 2467 | "call-bind": "^1.0.2", 2468 | "for-each": "^0.3.3", 2469 | "gopd": "^1.0.1", 2470 | "has-tostringtag": "^1.0.0" 2471 | }, 2472 | "engines": { 2473 | "node": ">= 0.4" 2474 | }, 2475 | "funding": { 2476 | "url": "https://github.com/sponsors/ljharb" 2477 | } 2478 | }, 2479 | "node_modules/is-weakmap": { 2480 | "version": "2.0.1", 2481 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2482 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2483 | "funding": { 2484 | "url": "https://github.com/sponsors/ljharb" 2485 | } 2486 | }, 2487 | "node_modules/is-weakref": { 2488 | "version": "1.0.2", 2489 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2490 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2491 | "dependencies": { 2492 | "call-bind": "^1.0.2" 2493 | }, 2494 | "funding": { 2495 | "url": "https://github.com/sponsors/ljharb" 2496 | } 2497 | }, 2498 | "node_modules/is-weakset": { 2499 | "version": "2.0.2", 2500 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2501 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2502 | "dependencies": { 2503 | "call-bind": "^1.0.2", 2504 | "get-intrinsic": "^1.1.1" 2505 | }, 2506 | "funding": { 2507 | "url": "https://github.com/sponsors/ljharb" 2508 | } 2509 | }, 2510 | "node_modules/is-wsl": { 2511 | "version": "2.2.0", 2512 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2513 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2514 | "dependencies": { 2515 | "is-docker": "^2.0.0" 2516 | }, 2517 | "engines": { 2518 | "node": ">=8" 2519 | } 2520 | }, 2521 | "node_modules/is-wsl/node_modules/is-docker": { 2522 | "version": "2.2.1", 2523 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2524 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2525 | "bin": { 2526 | "is-docker": "cli.js" 2527 | }, 2528 | "engines": { 2529 | "node": ">=8" 2530 | }, 2531 | "funding": { 2532 | "url": "https://github.com/sponsors/sindresorhus" 2533 | } 2534 | }, 2535 | "node_modules/isarray": { 2536 | "version": "2.0.5", 2537 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2538 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2539 | }, 2540 | "node_modules/isexe": { 2541 | "version": "2.0.0", 2542 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2543 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2544 | }, 2545 | "node_modules/jiti": { 2546 | "version": "1.18.2", 2547 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2548 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2549 | "bin": { 2550 | "jiti": "bin/jiti.js" 2551 | } 2552 | }, 2553 | "node_modules/js-tokens": { 2554 | "version": "4.0.0", 2555 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2556 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2557 | }, 2558 | "node_modules/js-yaml": { 2559 | "version": "4.1.0", 2560 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2561 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2562 | "dependencies": { 2563 | "argparse": "^2.0.1" 2564 | }, 2565 | "bin": { 2566 | "js-yaml": "bin/js-yaml.js" 2567 | } 2568 | }, 2569 | "node_modules/json-schema-traverse": { 2570 | "version": "0.4.1", 2571 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2572 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2573 | }, 2574 | "node_modules/json-stable-stringify-without-jsonify": { 2575 | "version": "1.0.1", 2576 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2577 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2578 | }, 2579 | "node_modules/json5": { 2580 | "version": "1.0.2", 2581 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2582 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2583 | "dependencies": { 2584 | "minimist": "^1.2.0" 2585 | }, 2586 | "bin": { 2587 | "json5": "lib/cli.js" 2588 | } 2589 | }, 2590 | "node_modules/jsx-ast-utils": { 2591 | "version": "3.3.3", 2592 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2593 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2594 | "dependencies": { 2595 | "array-includes": "^3.1.5", 2596 | "object.assign": "^4.1.3" 2597 | }, 2598 | "engines": { 2599 | "node": ">=4.0" 2600 | } 2601 | }, 2602 | "node_modules/language-subtag-registry": { 2603 | "version": "0.3.22", 2604 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2605 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2606 | }, 2607 | "node_modules/language-tags": { 2608 | "version": "1.0.5", 2609 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2610 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2611 | "dependencies": { 2612 | "language-subtag-registry": "~0.3.2" 2613 | } 2614 | }, 2615 | "node_modules/levn": { 2616 | "version": "0.4.1", 2617 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2618 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2619 | "dependencies": { 2620 | "prelude-ls": "^1.2.1", 2621 | "type-check": "~0.4.0" 2622 | }, 2623 | "engines": { 2624 | "node": ">= 0.8.0" 2625 | } 2626 | }, 2627 | "node_modules/lilconfig": { 2628 | "version": "2.1.0", 2629 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2630 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2631 | "engines": { 2632 | "node": ">=10" 2633 | } 2634 | }, 2635 | "node_modules/lines-and-columns": { 2636 | "version": "1.2.4", 2637 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2638 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2639 | }, 2640 | "node_modules/locate-path": { 2641 | "version": "6.0.0", 2642 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2643 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2644 | "dependencies": { 2645 | "p-locate": "^5.0.0" 2646 | }, 2647 | "engines": { 2648 | "node": ">=10" 2649 | }, 2650 | "funding": { 2651 | "url": "https://github.com/sponsors/sindresorhus" 2652 | } 2653 | }, 2654 | "node_modules/lodash.merge": { 2655 | "version": "4.6.2", 2656 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2657 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2658 | }, 2659 | "node_modules/loose-envify": { 2660 | "version": "1.4.0", 2661 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2662 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2663 | "dependencies": { 2664 | "js-tokens": "^3.0.0 || ^4.0.0" 2665 | }, 2666 | "bin": { 2667 | "loose-envify": "cli.js" 2668 | } 2669 | }, 2670 | "node_modules/lru-cache": { 2671 | "version": "6.0.0", 2672 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2673 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2674 | "dependencies": { 2675 | "yallist": "^4.0.0" 2676 | }, 2677 | "engines": { 2678 | "node": ">=10" 2679 | } 2680 | }, 2681 | "node_modules/merge-stream": { 2682 | "version": "2.0.0", 2683 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2684 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2685 | }, 2686 | "node_modules/merge2": { 2687 | "version": "1.4.1", 2688 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2689 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2690 | "engines": { 2691 | "node": ">= 8" 2692 | } 2693 | }, 2694 | "node_modules/micromatch": { 2695 | "version": "4.0.5", 2696 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2697 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2698 | "dependencies": { 2699 | "braces": "^3.0.2", 2700 | "picomatch": "^2.3.1" 2701 | }, 2702 | "engines": { 2703 | "node": ">=8.6" 2704 | } 2705 | }, 2706 | "node_modules/mimic-fn": { 2707 | "version": "4.0.0", 2708 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2709 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2710 | "engines": { 2711 | "node": ">=12" 2712 | }, 2713 | "funding": { 2714 | "url": "https://github.com/sponsors/sindresorhus" 2715 | } 2716 | }, 2717 | "node_modules/minimatch": { 2718 | "version": "3.1.2", 2719 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2720 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2721 | "dependencies": { 2722 | "brace-expansion": "^1.1.7" 2723 | }, 2724 | "engines": { 2725 | "node": "*" 2726 | } 2727 | }, 2728 | "node_modules/minimist": { 2729 | "version": "1.2.8", 2730 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2731 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2732 | "funding": { 2733 | "url": "https://github.com/sponsors/ljharb" 2734 | } 2735 | }, 2736 | "node_modules/ms": { 2737 | "version": "2.1.2", 2738 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2739 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2740 | }, 2741 | "node_modules/mz": { 2742 | "version": "2.7.0", 2743 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2744 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2745 | "dependencies": { 2746 | "any-promise": "^1.0.0", 2747 | "object-assign": "^4.0.1", 2748 | "thenify-all": "^1.0.0" 2749 | } 2750 | }, 2751 | "node_modules/nanoid": { 2752 | "version": "3.3.6", 2753 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2754 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2755 | "funding": [ 2756 | { 2757 | "type": "github", 2758 | "url": "https://github.com/sponsors/ai" 2759 | } 2760 | ], 2761 | "bin": { 2762 | "nanoid": "bin/nanoid.cjs" 2763 | }, 2764 | "engines": { 2765 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2766 | } 2767 | }, 2768 | "node_modules/natural-compare": { 2769 | "version": "1.4.0", 2770 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2771 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2772 | }, 2773 | "node_modules/next": { 2774 | "version": "13.4.4", 2775 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.4.tgz", 2776 | "integrity": "sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==", 2777 | "dependencies": { 2778 | "@next/env": "13.4.4", 2779 | "@swc/helpers": "0.5.1", 2780 | "busboy": "1.6.0", 2781 | "caniuse-lite": "^1.0.30001406", 2782 | "postcss": "8.4.14", 2783 | "styled-jsx": "5.1.1", 2784 | "zod": "3.21.4" 2785 | }, 2786 | "bin": { 2787 | "next": "dist/bin/next" 2788 | }, 2789 | "engines": { 2790 | "node": ">=16.8.0" 2791 | }, 2792 | "optionalDependencies": { 2793 | "@next/swc-darwin-arm64": "13.4.4", 2794 | "@next/swc-darwin-x64": "13.4.4", 2795 | "@next/swc-linux-arm64-gnu": "13.4.4", 2796 | "@next/swc-linux-arm64-musl": "13.4.4", 2797 | "@next/swc-linux-x64-gnu": "13.4.4", 2798 | "@next/swc-linux-x64-musl": "13.4.4", 2799 | "@next/swc-win32-arm64-msvc": "13.4.4", 2800 | "@next/swc-win32-ia32-msvc": "13.4.4", 2801 | "@next/swc-win32-x64-msvc": "13.4.4" 2802 | }, 2803 | "peerDependencies": { 2804 | "@opentelemetry/api": "^1.1.0", 2805 | "fibers": ">= 3.1.0", 2806 | "react": "^18.2.0", 2807 | "react-dom": "^18.2.0", 2808 | "sass": "^1.3.0" 2809 | }, 2810 | "peerDependenciesMeta": { 2811 | "@opentelemetry/api": { 2812 | "optional": true 2813 | }, 2814 | "fibers": { 2815 | "optional": true 2816 | }, 2817 | "sass": { 2818 | "optional": true 2819 | } 2820 | } 2821 | }, 2822 | "node_modules/next/node_modules/postcss": { 2823 | "version": "8.4.14", 2824 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2825 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2826 | "funding": [ 2827 | { 2828 | "type": "opencollective", 2829 | "url": "https://opencollective.com/postcss/" 2830 | }, 2831 | { 2832 | "type": "tidelift", 2833 | "url": "https://tidelift.com/funding/github/npm/postcss" 2834 | } 2835 | ], 2836 | "dependencies": { 2837 | "nanoid": "^3.3.4", 2838 | "picocolors": "^1.0.0", 2839 | "source-map-js": "^1.0.2" 2840 | }, 2841 | "engines": { 2842 | "node": "^10 || ^12 || >=14" 2843 | } 2844 | }, 2845 | "node_modules/node-releases": { 2846 | "version": "2.0.12", 2847 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", 2848 | "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" 2849 | }, 2850 | "node_modules/normalize-path": { 2851 | "version": "3.0.0", 2852 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2853 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2854 | "engines": { 2855 | "node": ">=0.10.0" 2856 | } 2857 | }, 2858 | "node_modules/normalize-range": { 2859 | "version": "0.1.2", 2860 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2861 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2862 | "engines": { 2863 | "node": ">=0.10.0" 2864 | } 2865 | }, 2866 | "node_modules/npm-run-path": { 2867 | "version": "5.1.0", 2868 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 2869 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 2870 | "dependencies": { 2871 | "path-key": "^4.0.0" 2872 | }, 2873 | "engines": { 2874 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2875 | }, 2876 | "funding": { 2877 | "url": "https://github.com/sponsors/sindresorhus" 2878 | } 2879 | }, 2880 | "node_modules/npm-run-path/node_modules/path-key": { 2881 | "version": "4.0.0", 2882 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 2883 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 2884 | "engines": { 2885 | "node": ">=12" 2886 | }, 2887 | "funding": { 2888 | "url": "https://github.com/sponsors/sindresorhus" 2889 | } 2890 | }, 2891 | "node_modules/object-assign": { 2892 | "version": "4.1.1", 2893 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2894 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2895 | "engines": { 2896 | "node": ">=0.10.0" 2897 | } 2898 | }, 2899 | "node_modules/object-hash": { 2900 | "version": "3.0.0", 2901 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 2902 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2903 | "engines": { 2904 | "node": ">= 6" 2905 | } 2906 | }, 2907 | "node_modules/object-inspect": { 2908 | "version": "1.12.3", 2909 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2910 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2911 | "funding": { 2912 | "url": "https://github.com/sponsors/ljharb" 2913 | } 2914 | }, 2915 | "node_modules/object-is": { 2916 | "version": "1.1.5", 2917 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 2918 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 2919 | "dependencies": { 2920 | "call-bind": "^1.0.2", 2921 | "define-properties": "^1.1.3" 2922 | }, 2923 | "engines": { 2924 | "node": ">= 0.4" 2925 | }, 2926 | "funding": { 2927 | "url": "https://github.com/sponsors/ljharb" 2928 | } 2929 | }, 2930 | "node_modules/object-keys": { 2931 | "version": "1.1.1", 2932 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2933 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2934 | "engines": { 2935 | "node": ">= 0.4" 2936 | } 2937 | }, 2938 | "node_modules/object.assign": { 2939 | "version": "4.1.4", 2940 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2941 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2942 | "dependencies": { 2943 | "call-bind": "^1.0.2", 2944 | "define-properties": "^1.1.4", 2945 | "has-symbols": "^1.0.3", 2946 | "object-keys": "^1.1.1" 2947 | }, 2948 | "engines": { 2949 | "node": ">= 0.4" 2950 | }, 2951 | "funding": { 2952 | "url": "https://github.com/sponsors/ljharb" 2953 | } 2954 | }, 2955 | "node_modules/object.entries": { 2956 | "version": "1.1.6", 2957 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 2958 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 2959 | "dependencies": { 2960 | "call-bind": "^1.0.2", 2961 | "define-properties": "^1.1.4", 2962 | "es-abstract": "^1.20.4" 2963 | }, 2964 | "engines": { 2965 | "node": ">= 0.4" 2966 | } 2967 | }, 2968 | "node_modules/object.fromentries": { 2969 | "version": "2.0.6", 2970 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 2971 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 2972 | "dependencies": { 2973 | "call-bind": "^1.0.2", 2974 | "define-properties": "^1.1.4", 2975 | "es-abstract": "^1.20.4" 2976 | }, 2977 | "engines": { 2978 | "node": ">= 0.4" 2979 | }, 2980 | "funding": { 2981 | "url": "https://github.com/sponsors/ljharb" 2982 | } 2983 | }, 2984 | "node_modules/object.hasown": { 2985 | "version": "1.1.2", 2986 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 2987 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 2988 | "dependencies": { 2989 | "define-properties": "^1.1.4", 2990 | "es-abstract": "^1.20.4" 2991 | }, 2992 | "funding": { 2993 | "url": "https://github.com/sponsors/ljharb" 2994 | } 2995 | }, 2996 | "node_modules/object.values": { 2997 | "version": "1.1.6", 2998 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 2999 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 3000 | "dependencies": { 3001 | "call-bind": "^1.0.2", 3002 | "define-properties": "^1.1.4", 3003 | "es-abstract": "^1.20.4" 3004 | }, 3005 | "engines": { 3006 | "node": ">= 0.4" 3007 | }, 3008 | "funding": { 3009 | "url": "https://github.com/sponsors/ljharb" 3010 | } 3011 | }, 3012 | "node_modules/once": { 3013 | "version": "1.4.0", 3014 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3015 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3016 | "dependencies": { 3017 | "wrappy": "1" 3018 | } 3019 | }, 3020 | "node_modules/onetime": { 3021 | "version": "6.0.0", 3022 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 3023 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 3024 | "dependencies": { 3025 | "mimic-fn": "^4.0.0" 3026 | }, 3027 | "engines": { 3028 | "node": ">=12" 3029 | }, 3030 | "funding": { 3031 | "url": "https://github.com/sponsors/sindresorhus" 3032 | } 3033 | }, 3034 | "node_modules/open": { 3035 | "version": "9.1.0", 3036 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 3037 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 3038 | "dependencies": { 3039 | "default-browser": "^4.0.0", 3040 | "define-lazy-prop": "^3.0.0", 3041 | "is-inside-container": "^1.0.0", 3042 | "is-wsl": "^2.2.0" 3043 | }, 3044 | "engines": { 3045 | "node": ">=14.16" 3046 | }, 3047 | "funding": { 3048 | "url": "https://github.com/sponsors/sindresorhus" 3049 | } 3050 | }, 3051 | "node_modules/optionator": { 3052 | "version": "0.9.1", 3053 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3054 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3055 | "dependencies": { 3056 | "deep-is": "^0.1.3", 3057 | "fast-levenshtein": "^2.0.6", 3058 | "levn": "^0.4.1", 3059 | "prelude-ls": "^1.2.1", 3060 | "type-check": "^0.4.0", 3061 | "word-wrap": "^1.2.3" 3062 | }, 3063 | "engines": { 3064 | "node": ">= 0.8.0" 3065 | } 3066 | }, 3067 | "node_modules/p-limit": { 3068 | "version": "3.1.0", 3069 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3070 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3071 | "dependencies": { 3072 | "yocto-queue": "^0.1.0" 3073 | }, 3074 | "engines": { 3075 | "node": ">=10" 3076 | }, 3077 | "funding": { 3078 | "url": "https://github.com/sponsors/sindresorhus" 3079 | } 3080 | }, 3081 | "node_modules/p-locate": { 3082 | "version": "5.0.0", 3083 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3084 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3085 | "dependencies": { 3086 | "p-limit": "^3.0.2" 3087 | }, 3088 | "engines": { 3089 | "node": ">=10" 3090 | }, 3091 | "funding": { 3092 | "url": "https://github.com/sponsors/sindresorhus" 3093 | } 3094 | }, 3095 | "node_modules/parent-module": { 3096 | "version": "1.0.1", 3097 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3098 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3099 | "dependencies": { 3100 | "callsites": "^3.0.0" 3101 | }, 3102 | "engines": { 3103 | "node": ">=6" 3104 | } 3105 | }, 3106 | "node_modules/path-exists": { 3107 | "version": "4.0.0", 3108 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3109 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3110 | "engines": { 3111 | "node": ">=8" 3112 | } 3113 | }, 3114 | "node_modules/path-is-absolute": { 3115 | "version": "1.0.1", 3116 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3117 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3118 | "engines": { 3119 | "node": ">=0.10.0" 3120 | } 3121 | }, 3122 | "node_modules/path-key": { 3123 | "version": "3.1.1", 3124 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3125 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3126 | "engines": { 3127 | "node": ">=8" 3128 | } 3129 | }, 3130 | "node_modules/path-parse": { 3131 | "version": "1.0.7", 3132 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3133 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3134 | }, 3135 | "node_modules/path-type": { 3136 | "version": "4.0.0", 3137 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3138 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3139 | "engines": { 3140 | "node": ">=8" 3141 | } 3142 | }, 3143 | "node_modules/picocolors": { 3144 | "version": "1.0.0", 3145 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3146 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3147 | }, 3148 | "node_modules/picomatch": { 3149 | "version": "2.3.1", 3150 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3151 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3152 | "engines": { 3153 | "node": ">=8.6" 3154 | }, 3155 | "funding": { 3156 | "url": "https://github.com/sponsors/jonschlinkert" 3157 | } 3158 | }, 3159 | "node_modules/pify": { 3160 | "version": "2.3.0", 3161 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3162 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3163 | "engines": { 3164 | "node": ">=0.10.0" 3165 | } 3166 | }, 3167 | "node_modules/pirates": { 3168 | "version": "4.0.5", 3169 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3170 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3171 | "engines": { 3172 | "node": ">= 6" 3173 | } 3174 | }, 3175 | "node_modules/postcss": { 3176 | "version": "8.4.24", 3177 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", 3178 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", 3179 | "funding": [ 3180 | { 3181 | "type": "opencollective", 3182 | "url": "https://opencollective.com/postcss/" 3183 | }, 3184 | { 3185 | "type": "tidelift", 3186 | "url": "https://tidelift.com/funding/github/npm/postcss" 3187 | }, 3188 | { 3189 | "type": "github", 3190 | "url": "https://github.com/sponsors/ai" 3191 | } 3192 | ], 3193 | "dependencies": { 3194 | "nanoid": "^3.3.6", 3195 | "picocolors": "^1.0.0", 3196 | "source-map-js": "^1.0.2" 3197 | }, 3198 | "engines": { 3199 | "node": "^10 || ^12 || >=14" 3200 | } 3201 | }, 3202 | "node_modules/postcss-import": { 3203 | "version": "15.1.0", 3204 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3205 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3206 | "dependencies": { 3207 | "postcss-value-parser": "^4.0.0", 3208 | "read-cache": "^1.0.0", 3209 | "resolve": "^1.1.7" 3210 | }, 3211 | "engines": { 3212 | "node": ">=14.0.0" 3213 | }, 3214 | "peerDependencies": { 3215 | "postcss": "^8.0.0" 3216 | } 3217 | }, 3218 | "node_modules/postcss-js": { 3219 | "version": "4.0.1", 3220 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3221 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3222 | "dependencies": { 3223 | "camelcase-css": "^2.0.1" 3224 | }, 3225 | "engines": { 3226 | "node": "^12 || ^14 || >= 16" 3227 | }, 3228 | "funding": { 3229 | "type": "opencollective", 3230 | "url": "https://opencollective.com/postcss/" 3231 | }, 3232 | "peerDependencies": { 3233 | "postcss": "^8.4.21" 3234 | } 3235 | }, 3236 | "node_modules/postcss-load-config": { 3237 | "version": "4.0.1", 3238 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3239 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3240 | "dependencies": { 3241 | "lilconfig": "^2.0.5", 3242 | "yaml": "^2.1.1" 3243 | }, 3244 | "engines": { 3245 | "node": ">= 14" 3246 | }, 3247 | "funding": { 3248 | "type": "opencollective", 3249 | "url": "https://opencollective.com/postcss/" 3250 | }, 3251 | "peerDependencies": { 3252 | "postcss": ">=8.0.9", 3253 | "ts-node": ">=9.0.0" 3254 | }, 3255 | "peerDependenciesMeta": { 3256 | "postcss": { 3257 | "optional": true 3258 | }, 3259 | "ts-node": { 3260 | "optional": true 3261 | } 3262 | } 3263 | }, 3264 | "node_modules/postcss-nested": { 3265 | "version": "6.0.1", 3266 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3267 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3268 | "dependencies": { 3269 | "postcss-selector-parser": "^6.0.11" 3270 | }, 3271 | "engines": { 3272 | "node": ">=12.0" 3273 | }, 3274 | "funding": { 3275 | "type": "opencollective", 3276 | "url": "https://opencollective.com/postcss/" 3277 | }, 3278 | "peerDependencies": { 3279 | "postcss": "^8.2.14" 3280 | } 3281 | }, 3282 | "node_modules/postcss-selector-parser": { 3283 | "version": "6.0.13", 3284 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3285 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3286 | "dependencies": { 3287 | "cssesc": "^3.0.0", 3288 | "util-deprecate": "^1.0.2" 3289 | }, 3290 | "engines": { 3291 | "node": ">=4" 3292 | } 3293 | }, 3294 | "node_modules/postcss-value-parser": { 3295 | "version": "4.2.0", 3296 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3297 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3298 | }, 3299 | "node_modules/prelude-ls": { 3300 | "version": "1.2.1", 3301 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3302 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3303 | "engines": { 3304 | "node": ">= 0.8.0" 3305 | } 3306 | }, 3307 | "node_modules/prop-types": { 3308 | "version": "15.8.1", 3309 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3310 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3311 | "dependencies": { 3312 | "loose-envify": "^1.4.0", 3313 | "object-assign": "^4.1.1", 3314 | "react-is": "^16.13.1" 3315 | } 3316 | }, 3317 | "node_modules/punycode": { 3318 | "version": "2.3.0", 3319 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3320 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3321 | "engines": { 3322 | "node": ">=6" 3323 | } 3324 | }, 3325 | "node_modules/queue-microtask": { 3326 | "version": "1.2.3", 3327 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3328 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3329 | "funding": [ 3330 | { 3331 | "type": "github", 3332 | "url": "https://github.com/sponsors/feross" 3333 | }, 3334 | { 3335 | "type": "patreon", 3336 | "url": "https://www.patreon.com/feross" 3337 | }, 3338 | { 3339 | "type": "consulting", 3340 | "url": "https://feross.org/support" 3341 | } 3342 | ] 3343 | }, 3344 | "node_modules/react": { 3345 | "version": "18.2.0", 3346 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3347 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3348 | "dependencies": { 3349 | "loose-envify": "^1.1.0" 3350 | }, 3351 | "engines": { 3352 | "node": ">=0.10.0" 3353 | } 3354 | }, 3355 | "node_modules/react-dom": { 3356 | "version": "18.2.0", 3357 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3358 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3359 | "dependencies": { 3360 | "loose-envify": "^1.1.0", 3361 | "scheduler": "^0.23.0" 3362 | }, 3363 | "peerDependencies": { 3364 | "react": "^18.2.0" 3365 | } 3366 | }, 3367 | "node_modules/react-is": { 3368 | "version": "16.13.1", 3369 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3370 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3371 | }, 3372 | "node_modules/read-cache": { 3373 | "version": "1.0.0", 3374 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3375 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3376 | "dependencies": { 3377 | "pify": "^2.3.0" 3378 | } 3379 | }, 3380 | "node_modules/readdirp": { 3381 | "version": "3.6.0", 3382 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3383 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3384 | "dependencies": { 3385 | "picomatch": "^2.2.1" 3386 | }, 3387 | "engines": { 3388 | "node": ">=8.10.0" 3389 | } 3390 | }, 3391 | "node_modules/regenerator-runtime": { 3392 | "version": "0.13.11", 3393 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3394 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3395 | }, 3396 | "node_modules/regexp.prototype.flags": { 3397 | "version": "1.5.0", 3398 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 3399 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 3400 | "dependencies": { 3401 | "call-bind": "^1.0.2", 3402 | "define-properties": "^1.2.0", 3403 | "functions-have-names": "^1.2.3" 3404 | }, 3405 | "engines": { 3406 | "node": ">= 0.4" 3407 | }, 3408 | "funding": { 3409 | "url": "https://github.com/sponsors/ljharb" 3410 | } 3411 | }, 3412 | "node_modules/resolve": { 3413 | "version": "1.22.2", 3414 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3415 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3416 | "dependencies": { 3417 | "is-core-module": "^2.11.0", 3418 | "path-parse": "^1.0.7", 3419 | "supports-preserve-symlinks-flag": "^1.0.0" 3420 | }, 3421 | "bin": { 3422 | "resolve": "bin/resolve" 3423 | }, 3424 | "funding": { 3425 | "url": "https://github.com/sponsors/ljharb" 3426 | } 3427 | }, 3428 | "node_modules/resolve-from": { 3429 | "version": "4.0.0", 3430 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3431 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3432 | "engines": { 3433 | "node": ">=4" 3434 | } 3435 | }, 3436 | "node_modules/resolve-pkg-maps": { 3437 | "version": "1.0.0", 3438 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3439 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3440 | "funding": { 3441 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3442 | } 3443 | }, 3444 | "node_modules/reusify": { 3445 | "version": "1.0.4", 3446 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3447 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3448 | "engines": { 3449 | "iojs": ">=1.0.0", 3450 | "node": ">=0.10.0" 3451 | } 3452 | }, 3453 | "node_modules/rimraf": { 3454 | "version": "3.0.2", 3455 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3456 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3457 | "dependencies": { 3458 | "glob": "^7.1.3" 3459 | }, 3460 | "bin": { 3461 | "rimraf": "bin.js" 3462 | }, 3463 | "funding": { 3464 | "url": "https://github.com/sponsors/isaacs" 3465 | } 3466 | }, 3467 | "node_modules/run-applescript": { 3468 | "version": "5.0.0", 3469 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3470 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3471 | "dependencies": { 3472 | "execa": "^5.0.0" 3473 | }, 3474 | "engines": { 3475 | "node": ">=12" 3476 | }, 3477 | "funding": { 3478 | "url": "https://github.com/sponsors/sindresorhus" 3479 | } 3480 | }, 3481 | "node_modules/run-applescript/node_modules/execa": { 3482 | "version": "5.1.1", 3483 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3484 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3485 | "dependencies": { 3486 | "cross-spawn": "^7.0.3", 3487 | "get-stream": "^6.0.0", 3488 | "human-signals": "^2.1.0", 3489 | "is-stream": "^2.0.0", 3490 | "merge-stream": "^2.0.0", 3491 | "npm-run-path": "^4.0.1", 3492 | "onetime": "^5.1.2", 3493 | "signal-exit": "^3.0.3", 3494 | "strip-final-newline": "^2.0.0" 3495 | }, 3496 | "engines": { 3497 | "node": ">=10" 3498 | }, 3499 | "funding": { 3500 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3501 | } 3502 | }, 3503 | "node_modules/run-applescript/node_modules/human-signals": { 3504 | "version": "2.1.0", 3505 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3506 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3507 | "engines": { 3508 | "node": ">=10.17.0" 3509 | } 3510 | }, 3511 | "node_modules/run-applescript/node_modules/is-stream": { 3512 | "version": "2.0.1", 3513 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3514 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3515 | "engines": { 3516 | "node": ">=8" 3517 | }, 3518 | "funding": { 3519 | "url": "https://github.com/sponsors/sindresorhus" 3520 | } 3521 | }, 3522 | "node_modules/run-applescript/node_modules/mimic-fn": { 3523 | "version": "2.1.0", 3524 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3525 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3526 | "engines": { 3527 | "node": ">=6" 3528 | } 3529 | }, 3530 | "node_modules/run-applescript/node_modules/npm-run-path": { 3531 | "version": "4.0.1", 3532 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3533 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3534 | "dependencies": { 3535 | "path-key": "^3.0.0" 3536 | }, 3537 | "engines": { 3538 | "node": ">=8" 3539 | } 3540 | }, 3541 | "node_modules/run-applescript/node_modules/onetime": { 3542 | "version": "5.1.2", 3543 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3544 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3545 | "dependencies": { 3546 | "mimic-fn": "^2.1.0" 3547 | }, 3548 | "engines": { 3549 | "node": ">=6" 3550 | }, 3551 | "funding": { 3552 | "url": "https://github.com/sponsors/sindresorhus" 3553 | } 3554 | }, 3555 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3556 | "version": "2.0.0", 3557 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3558 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3559 | "engines": { 3560 | "node": ">=6" 3561 | } 3562 | }, 3563 | "node_modules/run-parallel": { 3564 | "version": "1.2.0", 3565 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3566 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3567 | "funding": [ 3568 | { 3569 | "type": "github", 3570 | "url": "https://github.com/sponsors/feross" 3571 | }, 3572 | { 3573 | "type": "patreon", 3574 | "url": "https://www.patreon.com/feross" 3575 | }, 3576 | { 3577 | "type": "consulting", 3578 | "url": "https://feross.org/support" 3579 | } 3580 | ], 3581 | "dependencies": { 3582 | "queue-microtask": "^1.2.2" 3583 | } 3584 | }, 3585 | "node_modules/safe-regex-test": { 3586 | "version": "1.0.0", 3587 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3588 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3589 | "dependencies": { 3590 | "call-bind": "^1.0.2", 3591 | "get-intrinsic": "^1.1.3", 3592 | "is-regex": "^1.1.4" 3593 | }, 3594 | "funding": { 3595 | "url": "https://github.com/sponsors/ljharb" 3596 | } 3597 | }, 3598 | "node_modules/scheduler": { 3599 | "version": "0.23.0", 3600 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3601 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3602 | "dependencies": { 3603 | "loose-envify": "^1.1.0" 3604 | } 3605 | }, 3606 | "node_modules/semver": { 3607 | "version": "7.5.1", 3608 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", 3609 | "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", 3610 | "dependencies": { 3611 | "lru-cache": "^6.0.0" 3612 | }, 3613 | "bin": { 3614 | "semver": "bin/semver.js" 3615 | }, 3616 | "engines": { 3617 | "node": ">=10" 3618 | } 3619 | }, 3620 | "node_modules/shebang-command": { 3621 | "version": "2.0.0", 3622 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3623 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3624 | "dependencies": { 3625 | "shebang-regex": "^3.0.0" 3626 | }, 3627 | "engines": { 3628 | "node": ">=8" 3629 | } 3630 | }, 3631 | "node_modules/shebang-regex": { 3632 | "version": "3.0.0", 3633 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3634 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3635 | "engines": { 3636 | "node": ">=8" 3637 | } 3638 | }, 3639 | "node_modules/side-channel": { 3640 | "version": "1.0.4", 3641 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3642 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3643 | "dependencies": { 3644 | "call-bind": "^1.0.0", 3645 | "get-intrinsic": "^1.0.2", 3646 | "object-inspect": "^1.9.0" 3647 | }, 3648 | "funding": { 3649 | "url": "https://github.com/sponsors/ljharb" 3650 | } 3651 | }, 3652 | "node_modules/signal-exit": { 3653 | "version": "3.0.7", 3654 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3655 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3656 | }, 3657 | "node_modules/slash": { 3658 | "version": "3.0.0", 3659 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3660 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3661 | "engines": { 3662 | "node": ">=8" 3663 | } 3664 | }, 3665 | "node_modules/source-map-js": { 3666 | "version": "1.0.2", 3667 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3668 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3669 | "engines": { 3670 | "node": ">=0.10.0" 3671 | } 3672 | }, 3673 | "node_modules/stop-iteration-iterator": { 3674 | "version": "1.0.0", 3675 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3676 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3677 | "dependencies": { 3678 | "internal-slot": "^1.0.4" 3679 | }, 3680 | "engines": { 3681 | "node": ">= 0.4" 3682 | } 3683 | }, 3684 | "node_modules/streamsearch": { 3685 | "version": "1.1.0", 3686 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3687 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3688 | "engines": { 3689 | "node": ">=10.0.0" 3690 | } 3691 | }, 3692 | "node_modules/string.prototype.matchall": { 3693 | "version": "4.0.8", 3694 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3695 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3696 | "dependencies": { 3697 | "call-bind": "^1.0.2", 3698 | "define-properties": "^1.1.4", 3699 | "es-abstract": "^1.20.4", 3700 | "get-intrinsic": "^1.1.3", 3701 | "has-symbols": "^1.0.3", 3702 | "internal-slot": "^1.0.3", 3703 | "regexp.prototype.flags": "^1.4.3", 3704 | "side-channel": "^1.0.4" 3705 | }, 3706 | "funding": { 3707 | "url": "https://github.com/sponsors/ljharb" 3708 | } 3709 | }, 3710 | "node_modules/string.prototype.trim": { 3711 | "version": "1.2.7", 3712 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3713 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3714 | "dependencies": { 3715 | "call-bind": "^1.0.2", 3716 | "define-properties": "^1.1.4", 3717 | "es-abstract": "^1.20.4" 3718 | }, 3719 | "engines": { 3720 | "node": ">= 0.4" 3721 | }, 3722 | "funding": { 3723 | "url": "https://github.com/sponsors/ljharb" 3724 | } 3725 | }, 3726 | "node_modules/string.prototype.trimend": { 3727 | "version": "1.0.6", 3728 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3729 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3730 | "dependencies": { 3731 | "call-bind": "^1.0.2", 3732 | "define-properties": "^1.1.4", 3733 | "es-abstract": "^1.20.4" 3734 | }, 3735 | "funding": { 3736 | "url": "https://github.com/sponsors/ljharb" 3737 | } 3738 | }, 3739 | "node_modules/string.prototype.trimstart": { 3740 | "version": "1.0.6", 3741 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3742 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3743 | "dependencies": { 3744 | "call-bind": "^1.0.2", 3745 | "define-properties": "^1.1.4", 3746 | "es-abstract": "^1.20.4" 3747 | }, 3748 | "funding": { 3749 | "url": "https://github.com/sponsors/ljharb" 3750 | } 3751 | }, 3752 | "node_modules/strip-ansi": { 3753 | "version": "6.0.1", 3754 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3755 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3756 | "dependencies": { 3757 | "ansi-regex": "^5.0.1" 3758 | }, 3759 | "engines": { 3760 | "node": ">=8" 3761 | } 3762 | }, 3763 | "node_modules/strip-bom": { 3764 | "version": "3.0.0", 3765 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3766 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3767 | "engines": { 3768 | "node": ">=4" 3769 | } 3770 | }, 3771 | "node_modules/strip-final-newline": { 3772 | "version": "3.0.0", 3773 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3774 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3775 | "engines": { 3776 | "node": ">=12" 3777 | }, 3778 | "funding": { 3779 | "url": "https://github.com/sponsors/sindresorhus" 3780 | } 3781 | }, 3782 | "node_modules/strip-json-comments": { 3783 | "version": "3.1.1", 3784 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3785 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3786 | "engines": { 3787 | "node": ">=8" 3788 | }, 3789 | "funding": { 3790 | "url": "https://github.com/sponsors/sindresorhus" 3791 | } 3792 | }, 3793 | "node_modules/styled-jsx": { 3794 | "version": "5.1.1", 3795 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3796 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3797 | "dependencies": { 3798 | "client-only": "0.0.1" 3799 | }, 3800 | "engines": { 3801 | "node": ">= 12.0.0" 3802 | }, 3803 | "peerDependencies": { 3804 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3805 | }, 3806 | "peerDependenciesMeta": { 3807 | "@babel/core": { 3808 | "optional": true 3809 | }, 3810 | "babel-plugin-macros": { 3811 | "optional": true 3812 | } 3813 | } 3814 | }, 3815 | "node_modules/sucrase": { 3816 | "version": "3.32.0", 3817 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 3818 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 3819 | "dependencies": { 3820 | "@jridgewell/gen-mapping": "^0.3.2", 3821 | "commander": "^4.0.0", 3822 | "glob": "7.1.6", 3823 | "lines-and-columns": "^1.1.6", 3824 | "mz": "^2.7.0", 3825 | "pirates": "^4.0.1", 3826 | "ts-interface-checker": "^0.1.9" 3827 | }, 3828 | "bin": { 3829 | "sucrase": "bin/sucrase", 3830 | "sucrase-node": "bin/sucrase-node" 3831 | }, 3832 | "engines": { 3833 | "node": ">=8" 3834 | } 3835 | }, 3836 | "node_modules/sucrase/node_modules/glob": { 3837 | "version": "7.1.6", 3838 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 3839 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 3840 | "dependencies": { 3841 | "fs.realpath": "^1.0.0", 3842 | "inflight": "^1.0.4", 3843 | "inherits": "2", 3844 | "minimatch": "^3.0.4", 3845 | "once": "^1.3.0", 3846 | "path-is-absolute": "^1.0.0" 3847 | }, 3848 | "engines": { 3849 | "node": "*" 3850 | }, 3851 | "funding": { 3852 | "url": "https://github.com/sponsors/isaacs" 3853 | } 3854 | }, 3855 | "node_modules/supports-color": { 3856 | "version": "7.2.0", 3857 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3858 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3859 | "dependencies": { 3860 | "has-flag": "^4.0.0" 3861 | }, 3862 | "engines": { 3863 | "node": ">=8" 3864 | } 3865 | }, 3866 | "node_modules/supports-preserve-symlinks-flag": { 3867 | "version": "1.0.0", 3868 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3869 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3870 | "engines": { 3871 | "node": ">= 0.4" 3872 | }, 3873 | "funding": { 3874 | "url": "https://github.com/sponsors/ljharb" 3875 | } 3876 | }, 3877 | "node_modules/synckit": { 3878 | "version": "0.8.5", 3879 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 3880 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 3881 | "dependencies": { 3882 | "@pkgr/utils": "^2.3.1", 3883 | "tslib": "^2.5.0" 3884 | }, 3885 | "engines": { 3886 | "node": "^14.18.0 || >=16.0.0" 3887 | }, 3888 | "funding": { 3889 | "url": "https://opencollective.com/unts" 3890 | } 3891 | }, 3892 | "node_modules/tailwindcss": { 3893 | "version": "3.3.2", 3894 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 3895 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 3896 | "dependencies": { 3897 | "@alloc/quick-lru": "^5.2.0", 3898 | "arg": "^5.0.2", 3899 | "chokidar": "^3.5.3", 3900 | "didyoumean": "^1.2.2", 3901 | "dlv": "^1.1.3", 3902 | "fast-glob": "^3.2.12", 3903 | "glob-parent": "^6.0.2", 3904 | "is-glob": "^4.0.3", 3905 | "jiti": "^1.18.2", 3906 | "lilconfig": "^2.1.0", 3907 | "micromatch": "^4.0.5", 3908 | "normalize-path": "^3.0.0", 3909 | "object-hash": "^3.0.0", 3910 | "picocolors": "^1.0.0", 3911 | "postcss": "^8.4.23", 3912 | "postcss-import": "^15.1.0", 3913 | "postcss-js": "^4.0.1", 3914 | "postcss-load-config": "^4.0.1", 3915 | "postcss-nested": "^6.0.1", 3916 | "postcss-selector-parser": "^6.0.11", 3917 | "postcss-value-parser": "^4.2.0", 3918 | "resolve": "^1.22.2", 3919 | "sucrase": "^3.32.0" 3920 | }, 3921 | "bin": { 3922 | "tailwind": "lib/cli.js", 3923 | "tailwindcss": "lib/cli.js" 3924 | }, 3925 | "engines": { 3926 | "node": ">=14.0.0" 3927 | } 3928 | }, 3929 | "node_modules/tapable": { 3930 | "version": "2.2.1", 3931 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3932 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3933 | "engines": { 3934 | "node": ">=6" 3935 | } 3936 | }, 3937 | "node_modules/text-table": { 3938 | "version": "0.2.0", 3939 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3940 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 3941 | }, 3942 | "node_modules/thenify": { 3943 | "version": "3.3.1", 3944 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3945 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3946 | "dependencies": { 3947 | "any-promise": "^1.0.0" 3948 | } 3949 | }, 3950 | "node_modules/thenify-all": { 3951 | "version": "1.6.0", 3952 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3953 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3954 | "dependencies": { 3955 | "thenify": ">= 3.1.0 < 4" 3956 | }, 3957 | "engines": { 3958 | "node": ">=0.8" 3959 | } 3960 | }, 3961 | "node_modules/titleize": { 3962 | "version": "3.0.0", 3963 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 3964 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 3965 | "engines": { 3966 | "node": ">=12" 3967 | }, 3968 | "funding": { 3969 | "url": "https://github.com/sponsors/sindresorhus" 3970 | } 3971 | }, 3972 | "node_modules/to-regex-range": { 3973 | "version": "5.0.1", 3974 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3975 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3976 | "dependencies": { 3977 | "is-number": "^7.0.0" 3978 | }, 3979 | "engines": { 3980 | "node": ">=8.0" 3981 | } 3982 | }, 3983 | "node_modules/ts-interface-checker": { 3984 | "version": "0.1.13", 3985 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3986 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 3987 | }, 3988 | "node_modules/tsconfig-paths": { 3989 | "version": "3.14.2", 3990 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 3991 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 3992 | "dependencies": { 3993 | "@types/json5": "^0.0.29", 3994 | "json5": "^1.0.2", 3995 | "minimist": "^1.2.6", 3996 | "strip-bom": "^3.0.0" 3997 | } 3998 | }, 3999 | "node_modules/tslib": { 4000 | "version": "2.5.3", 4001 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", 4002 | "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" 4003 | }, 4004 | "node_modules/tsutils": { 4005 | "version": "3.21.0", 4006 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4007 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4008 | "dependencies": { 4009 | "tslib": "^1.8.1" 4010 | }, 4011 | "engines": { 4012 | "node": ">= 6" 4013 | }, 4014 | "peerDependencies": { 4015 | "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" 4016 | } 4017 | }, 4018 | "node_modules/tsutils/node_modules/tslib": { 4019 | "version": "1.14.1", 4020 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4021 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 4022 | }, 4023 | "node_modules/type-check": { 4024 | "version": "0.4.0", 4025 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4026 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4027 | "dependencies": { 4028 | "prelude-ls": "^1.2.1" 4029 | }, 4030 | "engines": { 4031 | "node": ">= 0.8.0" 4032 | } 4033 | }, 4034 | "node_modules/type-fest": { 4035 | "version": "0.20.2", 4036 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4037 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4038 | "engines": { 4039 | "node": ">=10" 4040 | }, 4041 | "funding": { 4042 | "url": "https://github.com/sponsors/sindresorhus" 4043 | } 4044 | }, 4045 | "node_modules/typed-array-length": { 4046 | "version": "1.0.4", 4047 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4048 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4049 | "dependencies": { 4050 | "call-bind": "^1.0.2", 4051 | "for-each": "^0.3.3", 4052 | "is-typed-array": "^1.1.9" 4053 | }, 4054 | "funding": { 4055 | "url": "https://github.com/sponsors/ljharb" 4056 | } 4057 | }, 4058 | "node_modules/typescript": { 4059 | "version": "5.1.3", 4060 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", 4061 | "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", 4062 | "peer": true, 4063 | "bin": { 4064 | "tsc": "bin/tsc", 4065 | "tsserver": "bin/tsserver" 4066 | }, 4067 | "engines": { 4068 | "node": ">=14.17" 4069 | } 4070 | }, 4071 | "node_modules/unbox-primitive": { 4072 | "version": "1.0.2", 4073 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4074 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4075 | "dependencies": { 4076 | "call-bind": "^1.0.2", 4077 | "has-bigints": "^1.0.2", 4078 | "has-symbols": "^1.0.3", 4079 | "which-boxed-primitive": "^1.0.2" 4080 | }, 4081 | "funding": { 4082 | "url": "https://github.com/sponsors/ljharb" 4083 | } 4084 | }, 4085 | "node_modules/untildify": { 4086 | "version": "4.0.0", 4087 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 4088 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 4089 | "engines": { 4090 | "node": ">=8" 4091 | } 4092 | }, 4093 | "node_modules/update-browserslist-db": { 4094 | "version": "1.0.11", 4095 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 4096 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 4097 | "funding": [ 4098 | { 4099 | "type": "opencollective", 4100 | "url": "https://opencollective.com/browserslist" 4101 | }, 4102 | { 4103 | "type": "tidelift", 4104 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4105 | }, 4106 | { 4107 | "type": "github", 4108 | "url": "https://github.com/sponsors/ai" 4109 | } 4110 | ], 4111 | "dependencies": { 4112 | "escalade": "^3.1.1", 4113 | "picocolors": "^1.0.0" 4114 | }, 4115 | "bin": { 4116 | "update-browserslist-db": "cli.js" 4117 | }, 4118 | "peerDependencies": { 4119 | "browserslist": ">= 4.21.0" 4120 | } 4121 | }, 4122 | "node_modules/uri-js": { 4123 | "version": "4.4.1", 4124 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4125 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4126 | "dependencies": { 4127 | "punycode": "^2.1.0" 4128 | } 4129 | }, 4130 | "node_modules/util-deprecate": { 4131 | "version": "1.0.2", 4132 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4133 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4134 | }, 4135 | "node_modules/which": { 4136 | "version": "2.0.2", 4137 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4138 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4139 | "dependencies": { 4140 | "isexe": "^2.0.0" 4141 | }, 4142 | "bin": { 4143 | "node-which": "bin/node-which" 4144 | }, 4145 | "engines": { 4146 | "node": ">= 8" 4147 | } 4148 | }, 4149 | "node_modules/which-boxed-primitive": { 4150 | "version": "1.0.2", 4151 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4152 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4153 | "dependencies": { 4154 | "is-bigint": "^1.0.1", 4155 | "is-boolean-object": "^1.1.0", 4156 | "is-number-object": "^1.0.4", 4157 | "is-string": "^1.0.5", 4158 | "is-symbol": "^1.0.3" 4159 | }, 4160 | "funding": { 4161 | "url": "https://github.com/sponsors/ljharb" 4162 | } 4163 | }, 4164 | "node_modules/which-collection": { 4165 | "version": "1.0.1", 4166 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4167 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4168 | "dependencies": { 4169 | "is-map": "^2.0.1", 4170 | "is-set": "^2.0.1", 4171 | "is-weakmap": "^2.0.1", 4172 | "is-weakset": "^2.0.1" 4173 | }, 4174 | "funding": { 4175 | "url": "https://github.com/sponsors/ljharb" 4176 | } 4177 | }, 4178 | "node_modules/which-typed-array": { 4179 | "version": "1.1.9", 4180 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4181 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4182 | "dependencies": { 4183 | "available-typed-arrays": "^1.0.5", 4184 | "call-bind": "^1.0.2", 4185 | "for-each": "^0.3.3", 4186 | "gopd": "^1.0.1", 4187 | "has-tostringtag": "^1.0.0", 4188 | "is-typed-array": "^1.1.10" 4189 | }, 4190 | "engines": { 4191 | "node": ">= 0.4" 4192 | }, 4193 | "funding": { 4194 | "url": "https://github.com/sponsors/ljharb" 4195 | } 4196 | }, 4197 | "node_modules/word-wrap": { 4198 | "version": "1.2.3", 4199 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4200 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4201 | "engines": { 4202 | "node": ">=0.10.0" 4203 | } 4204 | }, 4205 | "node_modules/wrappy": { 4206 | "version": "1.0.2", 4207 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4208 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4209 | }, 4210 | "node_modules/yallist": { 4211 | "version": "4.0.0", 4212 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4213 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4214 | }, 4215 | "node_modules/yaml": { 4216 | "version": "2.3.1", 4217 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", 4218 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", 4219 | "engines": { 4220 | "node": ">= 14" 4221 | } 4222 | }, 4223 | "node_modules/yocto-queue": { 4224 | "version": "0.1.0", 4225 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4226 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4227 | "engines": { 4228 | "node": ">=10" 4229 | }, 4230 | "funding": { 4231 | "url": "https://github.com/sponsors/sindresorhus" 4232 | } 4233 | }, 4234 | "node_modules/zod": { 4235 | "version": "3.21.4", 4236 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4237 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4238 | "funding": { 4239 | "url": "https://github.com/sponsors/colinhacks" 4240 | } 4241 | } 4242 | } 4243 | } 4244 | -------------------------------------------------------------------------------- /frontend/topic2explanation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "topic2explanation", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@next/font": "^13.4.4", 13 | "autoprefixer": "10.4.14", 14 | "eslint": "8.42.0", 15 | "eslint-config-next": "13.4.4", 16 | "next": "13.4.4", 17 | "postcss": "8.4.24", 18 | "react": "18.2.0", 19 | "react-dom": "18.2.0", 20 | "tailwindcss": "3.3.2" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /frontend/topic2explanation/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /frontend/topic2explanation/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | --------------------------------------------------------------------------------