From bfdd39a7857b10edb63d2be26acab3f8ce5a8a0c Mon Sep 17 00:00:00 2001 From: Hadeed Ahmad Date: Fri, 31 May 2024 18:12:54 +0400 Subject: [PATCH] Initial commit --- .gitignore | 2 + README-template.md | 114 +++ README.md | 99 ++ assets/favicon-32x32.png | Bin 0 -> 1063 bytes assets/icon-o-outline.svg | 1 + assets/icon-o.svg | 1 + assets/icon-restart.svg | 1 + assets/icon-x-outline.svg | 1 + assets/icon-x.svg | 1 + assets/logo.svg | 1 + index.html | 37 + package-lock.json | 1917 +++++++++++++++++++++++++++++++++++++ package.json | 32 + preview.jpg | Bin 0 -> 36642 bytes src/app.jsx | 17 + tailwind.config.js | 8 + vite.config.js | 7 + 17 files changed, 2239 insertions(+) create mode 100644 .gitignore create mode 100644 README-template.md create mode 100644 README.md create mode 100644 assets/favicon-32x32.png create mode 100644 assets/icon-o-outline.svg create mode 100644 assets/icon-o.svg create mode 100644 assets/icon-restart.svg create mode 100644 assets/icon-x-outline.svg create mode 100644 assets/icon-x.svg create mode 100644 assets/logo.svg create mode 100644 index.html create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 preview.jpg create mode 100644 src/app.jsx create mode 100644 tailwind.config.js create mode 100644 vite.config.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..646ac51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +node_modules/ diff --git a/README-template.md b/README-template.md new file mode 100644 index 0000000..0761b79 --- /dev/null +++ b/README-template.md @@ -0,0 +1,114 @@ +# Frontend Mentor - Tic Tac Toe solution + +This is a solution to the [Tic Tac Toe challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/tic-tac-toe-game-Re7ZF_E2v). Frontend Mentor challenges help you improve your coding skills by building realistic projects. + +## Table of contents + +- [Overview](#overview) + - [The challenge](#the-challenge) + - [Screenshot](#screenshot) + - [Links](#links) +- [My process](#my-process) + - [Built with](#built-with) + - [What I learned](#what-i-learned) + - [Continued development](#continued-development) + - [Useful resources](#useful-resources) +- [Author](#author) +- [Acknowledgments](#acknowledgments) + +**Note: Delete this note and update the table of contents based on what sections you keep.** + +## Overview + +### The challenge + +Users should be able to: + +- View the optimal layout for the game depending on their device's screen size +- See hover states for all interactive elements on the page +- Play the game either solo vs the computer or multiplayer against another person +- **Bonus 1**: Save the game state in the browser so that it’s preserved if the player refreshes their browser +- **Bonus 2**: Instead of having the computer randomly make their moves, try making it clever so it’s proactive in blocking your moves and trying to win + +### Screenshot + +![](./screenshot.jpg) + +Add a screenshot of your solution. The easiest way to do this is to use Firefox to view your project, right-click the page and select "Take a Screenshot". You can choose either a full-height screenshot or a cropped one based on how long the page is. If it's very long, it might be best to crop it. + +Alternatively, you can use a tool like [FireShot](https://getfireshot.com/) to take the screenshot. FireShot has a free option, so you don't need to purchase it. + +Then crop/optimize/edit your image however you like, add it to your project, and update the file path in the image above. + +**Note: Delete this note and the paragraphs above when you add your screenshot. If you prefer not to add a screenshot, feel free to remove this entire section.** + +### Links + +- Solution URL: [Add solution URL here](https://your-solution-url.com) +- Live Site URL: [Add live site URL here](https://your-live-site-url.com) + +## My process + +### Built with + +- Semantic HTML5 markup +- CSS custom properties +- Flexbox +- CSS Grid +- Mobile-first workflow +- [React](https://reactjs.org/) - JS library +- [Next.js](https://nextjs.org/) - React framework +- [Styled Components](https://styled-components.com/) - For styles + +**Note: These are just examples. Delete this note and replace the list above with your own choices** + +### What I learned + +Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge. + +To see how you can add code snippets, see below: + +```html +

Some HTML code I'm proud of

+``` +```css +.proud-of-this-css { + color: papayawhip; +} +``` +```js +const proudOfThisFunc = () => { + console.log('🎉') +} +``` + +If you want more help with writing markdown, we'd recommend checking out [The Markdown Guide](https://www.markdownguide.org/) to learn more. + +**Note: Delete this note and the content within this section and replace with your own learnings.** + +### Continued development + +Use this section to outline areas that you want to continue focusing on in future projects. These could be concepts you're still not completely comfortable with or techniques you found useful that you want to refine and perfect. + +**Note: Delete this note and the content within this section and replace with your own plans for continued development.** + +### Useful resources + +- [Example resource 1](https://www.example.com) - This helped me for XYZ reason. I really liked this pattern and will use it going forward. +- [Example resource 2](https://www.example.com) - This is an amazing article which helped me finally understand XYZ. I'd recommend it to anyone still learning this concept. + +**Note: Delete this note and replace the list above with resources that helped you during the challenge. These could come in handy for anyone viewing your solution or for yourself when you look back on this project in the future.** + +## Author + +- Website - [Add your name here](https://www.your-site.com) +- Frontend Mentor - [@yourusername](https://www.frontendmentor.io/profile/yourusername) +- Twitter - [@yourusername](https://www.twitter.com/yourusername) + +**Note: Delete this note and add/remove/edit lines above based on what links you'd like to share.** + +## Acknowledgments + +This is where you can give a hat tip to anyone who helped you out on this project. Perhaps you worked in a team or got some inspiration from someone else's solution. This is the perfect place to give them some credit. + +**Note: Delete this note and edit this section's content as necessary. If you completed this challenge by yourself, feel free to delete this section entirely.** diff --git a/README.md b/README.md new file mode 100644 index 0000000..6a5ab6d --- /dev/null +++ b/README.md @@ -0,0 +1,99 @@ +# Frontend Mentor - Tic Tac Toe + +![Design preview for the Tic Tac Toe coding challenge](./preview.jpg) + +## Welcome! 👋 + +Thanks for purchasing this premium Frontend Mentor coding challenge. + +[Frontend Mentor](https://www.frontendmentor.io) challenges help you improve your coding skills by building realistic projects. These premium challenges are perfect portfolio pieces, so please feel free to use what you create in your portfolio to show others. + +**To do this challenge, you need a strong understanding of HTML, CSS, and JavaScript.** + +## The challenge + +Your challenge is to build out this Tic Tac Toe game and get it looking as close to the design as possible. + +You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go. + +Your users should be able to: + +- View the optimal layout for the game depending on their device's screen size +- See hover states for all interactive elements on the page +- Play the game either solo vs the computer or multiplayer against another person +- **Bonus 1**: Save the game state in the browser so that it’s preserved if the player refreshes their browser +- **Bonus 2**: Instead of having the computer randomly make its moves, try making it clever so it’s proactive in blocking your moves and trying to win + +### Expected behaviour + +- You can choose to make the default screen either the new game menu or the solo player game board. Note that we're using the solo player game board for the design screenshot, so if you choose the new game menu it won't match up in the design comparison slider. This isn't a big deal, but is something worth considering. +- On the new game screen, whichever mark isn't selected for the first player is automatically assigned to the second player when the game is started. +- The first turn of the first round is always played by whoever is playing as X. For every following round, the first turn alternates between O and X. +- After a round, if the player chooses to quit the game, they should be taken back to the new game menu. +- If the restart icon in the top right is clicked, the "Restart game?" modal should show and allow the player to reset the game or cancel and continue to play. + +Want some support on the challenge? [Join our community](https://www.frontendmentor.io/community) and ask questions in the **#help** channel. + +## Where to find everything + +Your task is to build out the project to the design file provided. We provide both Sketch and Figma versions of the design, so you can choose which tool you prefer to use. You can download the design file on the platform. **Please be sure not to share them with anyone else.** The design download comes with a `README.md` file as well to help you get set up. + +All the required assets for this project are in the `/assets` folder. The assets are already exported for the correct screen size and optimized. Some images are reusable at multiple screen sizes. So if you don't see an image in a specific folder, it will typically be in another folder for that page. + +The design system in the design file will give you more information about the various colors, fonts, and styles used in this project. Our fonts always come from [Google Fonts](https://fonts.google.com/). + +## Building your project + +Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps: + +1. Separate the `starter-code` from the rest of this project and rename it to something meaningful for you. Initialize the codebase as a public repository on [GitHub](https://github.com/). Creating a repo will make it easier to share your code with the community if you need help. If you're not sure how to do this, [have a read-through of this Try Git resource](https://try.github.io/). **⚠️ IMPORTANT ⚠️: There are already a couple of `.gitignore` files in this project. Please do not remove them or change the content of the files. If you create a brand new project, please use the `.gitignore` files provided in your new codebase. This is to avoid the accidental upload of the design files to GitHub. With these premium challenges, please be sure not to share the design files in your GitHub repo. Thanks!** +2. Configure your repository to publish your code to a web address. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, and we provide some recommendations below. +3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes to create reusable styles. +4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content. +5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`. +6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on. + +## Deploying your project + +As mentioned above, there are many ways to host your project for free. Our recommended hosts are: + +- [GitHub Pages](https://pages.github.com/) +- [Vercel](https://vercel.com/) +- [Netlify](https://www.netlify.com/) + +You can host your site using one of these solutions or any of our other trusted providers. [Read more about our recommended and trusted hosts](https://medium.com/frontend-mentor/frontend-mentor-trusted-hosting-providers-bf000dfebe). + +## Create a custom `README.md` + +We strongly recommend overwriting this `README.md` with a custom one. We've provided a template inside the [`README-template.md`](./README-template.md) file in this starter code. + +The template provides a guide for what to add. A custom `README` will help you explain your project and reflect on your learnings. Please feel free to edit our template as much as you like. + +Once you've added your information to the template, delete this file and rename the `README-template.md` file to `README.md`. That will make it show up as your repository's README file. + +## Submitting your solution + +Submit your solution on the platform for the rest of the community to see. Follow our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) for tips on how to do this. + +Remember, if you're looking for feedback on your solution, be sure to ask questions when submitting it. The more specific and detailed you are with your questions, the higher the chance you'll get valuable feedback from the community. + +**⚠️ IMPORTANT ⚠️: With these premium challenges, please be sure not to upload the design files to GitHub when you're submitting to the platform and sharing it around. If you've created a brand new project, the easiest way to do that is to copy across the `.gitignore` provided in this starter project.** + +## Sharing your solution + +There are multiple places you can share your solution: + +1. Share your solution page in the **#finished-projects** channel of the [community](https://www.frontendmentor.io/community). +2. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor**, including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around. +3. Share your solution on other social channels like LinkedIn. +4. Blog about your experience building your project. Writing about your workflow, technical choices, and talking through your code is a brilliant way to reinforce what you've learned. Great platforms to write on are [dev.to](https://dev.to/), [Hashnode](https://hashnode.com/), and [CodeNewbie](https://community.codenewbie.org/). + +We provide templates to help you share your solution once you've submitted it on the platform. Please do edit them and include specific questions when you're looking for feedback. + +The more specific you are with your questions the more likely it is that another member of the community will give you feedback. + +## Got feedback for us? + +We love receiving feedback! We're always looking to improve our challenges and our platform. So if you have anything you'd like to mention, please email hi[at]frontendmentor[dot]io. + +**Have fun building!** 🚀 diff --git a/assets/favicon-32x32.png b/assets/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2df7f089f46dd930239e418bf13e8e4c1cca0f GIT binary patch literal 1063 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`?>!lvVtU&J%W50 z7^>757#dm_7=8hT8eT9klo~KFyh>nTu$sZZAYL$MSD+081EY0-Plzi}!G9Wnr(eF` z|M+F+!xzhMK3;zF(cgdn_B?v|`rD7+fB)V2@MY=EN9|{BEWPpQ{f}RtfBl|!^+Ea3 z%d2iZe)i@2x9`6{eg66V&!4ULpSPU4KJ)Uu^RM22`~BzO$wz&&PyPA(@7<4I`yRjQ zJAZr1#XB#){D-o5+r^Vjdc3)fsquh@R{^yA;Z|8C!Zw`1zDvzMNK{QUFr z^G~yvU&yK5nOnE3q5ts2d8Z#d`S9=G|MwriU%2{m%ii0owp@Sy>dXGuA$NemCsPvS z7YvLEt(>(tKmBDkpML+hROc(RL;oBPGFiO5x8~1ErS?rgb&N^g?k~Ih+L^ zk;M!Q+`=Ht$S`Y;1W=H@#M9T6{SlWiKeL>x)y)*39#2mf#}JFtt&`J}n+ycniko-@ z3;26vOWyCzeS7I$?C$UX{_kIKV}WAF+24(KRQ;Wbm=(hXgpO=b(eBb|byZ~P5M3dt zyDB-nDx`Zw9LoWN-GrY`kHxRfy}Q3KfBxRdclJCv_%N_mL-x0j+x*I+s%JIY&vgg3Y zTes?8j%DMbh5PocynFBNZJq}$w`Q+tKfe6=^y}tkkv_Zb+uQBmSHB|O-+X(*4%OrO zQF%8%OSj*z`t$7X`oHyz%ReTa40^8r7Z}c}C9V-ADTyViR>?)FK#IZ0z|cb1&_LJF zGQ`l-%D~vl*g)IB$jZQAv*1E06b-rgDVb@NxHTN|kz5AU01WSllAy$Lg@U5|w9K4T zg_6pGRE5lfl4J&kiaC!z@o*G|X=t4CKYhmYX%GXmGPhnbx3IFX_hb=fVFi~4lfx;@ u%9}$JPT#n4;>ejJGDp}?H+U@Y(qnifE?Dx($#g2v3I \ No newline at end of file diff --git a/assets/icon-o.svg b/assets/icon-o.svg new file mode 100644 index 0000000..ac37684 --- /dev/null +++ b/assets/icon-o.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icon-restart.svg b/assets/icon-restart.svg new file mode 100644 index 0000000..433c522 --- /dev/null +++ b/assets/icon-restart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icon-x-outline.svg b/assets/icon-x-outline.svg new file mode 100644 index 0000000..89fe686 --- /dev/null +++ b/assets/icon-x-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icon-x.svg b/assets/icon-x.svg new file mode 100644 index 0000000..93d324b --- /dev/null +++ b/assets/icon-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/logo.svg b/assets/logo.svg new file mode 100644 index 0000000..fe1b9a9 --- /dev/null +++ b/assets/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..a70195c --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ + + + + + + + + Tic Tac Toe + + + +
+ + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..f7f6992 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1917 @@ +{ + "name": "tic-tac-toe", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.38", + "prettier": "^3.2.5", + "prettier-plugin-css-order": "^2.1.2", + "prettier-plugin-tailwindcss": "^0.5.14", + "tailwindcss": "^3.4.3", + "vite": "^5.2.10" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", + "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001614", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001614.tgz", + "integrity": "sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-declaration-sorter": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.752", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.752.tgz", + "integrity": "sha512-P3QJreYI/AUTcfBVrC4zy9KvnZWekViThgQMX/VpJ+IsOBbcX5JFpORM4qWapwWQ+agb2nYAOyn/4PMXOk0m2Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-less": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-6.0.0.tgz", + "integrity": "sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "postcss": "^8.3.5" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-scss": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-scss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.4.29" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.16", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", + "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-css-order": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/prettier-plugin-css-order/-/prettier-plugin-css-order-2.1.2.tgz", + "integrity": "sha512-vomxPjHI6pOMYcBuouSJHxxQClJXaUpU9rsV9IAO2wrSTZILRRlrxAAR8t9UF6wtczLkLfNRFUwM+ZbGXOONUA==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^7.1.1", + "postcss-less": "^6.0.0", + "postcss-scss": "^4.0.9" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "prettier": "3.x" + } + }, + "node_modules/prettier-plugin-tailwindcss": { + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.14.tgz", + "integrity": "sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==", + "dev": true, + "engines": { + "node": ">=14.21.3" + }, + "peerDependencies": { + "@ianvs/prettier-plugin-sort-imports": "*", + "@prettier/plugin-pug": "*", + "@shopify/prettier-plugin-liquid": "*", + "@trivago/prettier-plugin-sort-imports": "*", + "@zackad/prettier-plugin-twig-melody": "*", + "prettier": "^3.0", + "prettier-plugin-astro": "*", + "prettier-plugin-css-order": "*", + "prettier-plugin-import-sort": "*", + "prettier-plugin-jsdoc": "*", + "prettier-plugin-marko": "*", + "prettier-plugin-organize-attributes": "*", + "prettier-plugin-organize-imports": "*", + "prettier-plugin-sort-imports": "*", + "prettier-plugin-style-order": "*", + "prettier-plugin-svelte": "*" + }, + "peerDependenciesMeta": { + "@ianvs/prettier-plugin-sort-imports": { + "optional": true + }, + "@prettier/plugin-pug": { + "optional": true + }, + "@shopify/prettier-plugin-liquid": { + "optional": true + }, + "@trivago/prettier-plugin-sort-imports": { + "optional": true + }, + "@zackad/prettier-plugin-twig-melody": { + "optional": true + }, + "prettier-plugin-astro": { + "optional": true + }, + "prettier-plugin-css-order": { + "optional": true + }, + "prettier-plugin-import-sort": { + "optional": true + }, + "prettier-plugin-jsdoc": { + "optional": true + }, + "prettier-plugin-marko": { + "optional": true + }, + "prettier-plugin-organize-attributes": { + "optional": true + }, + "prettier-plugin-organize-imports": { + "optional": true + }, + "prettier-plugin-sort-imports": { + "optional": true + }, + "prettier-plugin-style-order": { + "optional": true + }, + "prettier-plugin-svelte": { + "optional": true + } + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.2.tgz", + "integrity": "sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.17.2", + "@rollup/rollup-android-arm64": "4.17.2", + "@rollup/rollup-darwin-arm64": "4.17.2", + "@rollup/rollup-darwin-x64": "4.17.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.17.2", + "@rollup/rollup-linux-arm-musleabihf": "4.17.2", + "@rollup/rollup-linux-arm64-gnu": "4.17.2", + "@rollup/rollup-linux-arm64-musl": "4.17.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.17.2", + "@rollup/rollup-linux-riscv64-gnu": "4.17.2", + "@rollup/rollup-linux-s390x-gnu": "4.17.2", + "@rollup/rollup-linux-x64-gnu": "4.17.2", + "@rollup/rollup-linux-x64-musl": "4.17.2", + "@rollup/rollup-win32-arm64-msvc": "4.17.2", + "@rollup/rollup-win32-ia32-msvc": "4.17.2", + "@rollup/rollup-win32-x64-msvc": "4.17.2", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", + "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.0", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.2.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.10.tgz", + "integrity": "sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==", + "dev": true, + "dependencies": { + "esbuild": "^0.20.1", + "postcss": "^8.4.38", + "rollup": "^4.13.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz", + "integrity": "sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..4f970a0 --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "type": "module", + "scripts": { + "dev": "vite --open", + "build": "vite build" + }, + "dependencies": { + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "autoprefixer": "^10.4.19", + "postcss": "^8.4.38", + "prettier": "^3.2.5", + "prettier-plugin-css-order": "^2.1.2", + "prettier-plugin-tailwindcss": "^0.5.14", + "tailwindcss": "^3.4.3", + "vite": "^5.2.10" + }, + "prettier": { + "plugins": [ + "prettier-plugin-css-order", + "prettier-plugin-tailwindcss" + ] + }, + "postcss": { + "plugins": { + "tailwindcss": {}, + "autoprefixer": {} + } + } +} diff --git a/preview.jpg b/preview.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ba4b536e19824437815671f9fb3a88a00e24f5c GIT binary patch literal 36642 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 literal 0 HcmV?d00001 diff --git a/src/app.jsx b/src/app.jsx new file mode 100644 index 0000000..d2a05e0 --- /dev/null +++ b/src/app.jsx @@ -0,0 +1,17 @@ +export default () => { + return ( + <> +

React + Express + Tailwind

+ + + ); +}; diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..5908589 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,8 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./index.html", "./src/**/*.jsx"], + theme: { + extend: {}, + }, + plugins: [], +}; diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..4cece00 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from "vite"; + +export default defineConfig({ + esbuild: { + jsxInject: `import React from 'react'`, + }, +});