From bfb2bec95b01cc820449a8a339ba58f45d6e9159 Mon Sep 17 00:00:00 2001 From: Ritabrata Ghosh <76sonali40@gmail.com> Date: Sun, 22 Mar 2026 13:25:35 +0530 Subject: [PATCH 1/5] feat: Add github-auto-fix-agent AgentKit --- kits/agentic/github-auto-fix-agent/.gitignore | 41 + kits/agentic/github-auto-fix-agent/AGENTS.md | 5 + kits/agentic/github-auto-fix-agent/CLAUDE.md | 1 + kits/agentic/github-auto-fix-agent/README.md | 36 + .../actions/orchestrate.ts | 143 + .../app/api/fix/route.ts | 28 + .../github-auto-fix-agent/app/favicon.ico | Bin 0 -> 25931 bytes .../github-auto-fix-agent/app/globals.css | 84 + .../github-auto-fix-agent/app/layout.tsx | 36 + .../github-auto-fix-agent/app/page.tsx | 84 + .../components/BackgroundDecoration.tsx | 30 + .../components/ErrorResult.tsx | 32 + .../components/Footer.tsx | 18 + .../components/Header.tsx | 66 + .../components/IssueForm.tsx | 102 + .../components/SuccessResult.tsx | 147 + .../github-auto-fix-agent/eslint.config.mjs | 18 + .../flows/github-issue-solver/README.md | 63 + .../flows/github-issue-solver/config.json | 302 + .../flows/github-issue-solver/inputs.json | 98 + .../flows/github-issue-solver/meta.json | 9 + .../lib/lamatic-client.ts | 16 + .../github-auto-fix-agent/next.config.ts | 7 + .../github-auto-fix-agent/package-lock.json | 6665 +++++++++++++++++ .../github-auto-fix-agent/package.json | 29 + .../github-auto-fix-agent/postcss.config.mjs | 7 + .../github-auto-fix-agent/public/file.svg | 1 + .../github-auto-fix-agent/public/globe.svg | 1 + .../github-auto-fix-agent/public/next.svg | 1 + .../github-auto-fix-agent/public/vercel.svg | 1 + .../github-auto-fix-agent/public/window.svg | 1 + .../github-auto-fix-agent/tsconfig.json | 34 + 32 files changed, 8106 insertions(+) create mode 100644 kits/agentic/github-auto-fix-agent/.gitignore create mode 100644 kits/agentic/github-auto-fix-agent/AGENTS.md create mode 100644 kits/agentic/github-auto-fix-agent/CLAUDE.md create mode 100644 kits/agentic/github-auto-fix-agent/README.md create mode 100644 kits/agentic/github-auto-fix-agent/actions/orchestrate.ts create mode 100644 kits/agentic/github-auto-fix-agent/app/api/fix/route.ts create mode 100644 kits/agentic/github-auto-fix-agent/app/favicon.ico create mode 100644 kits/agentic/github-auto-fix-agent/app/globals.css create mode 100644 kits/agentic/github-auto-fix-agent/app/layout.tsx create mode 100644 kits/agentic/github-auto-fix-agent/app/page.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/BackgroundDecoration.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/ErrorResult.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/Footer.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/Header.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/IssueForm.tsx create mode 100644 kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx create mode 100644 kits/agentic/github-auto-fix-agent/eslint.config.mjs create mode 100644 kits/agentic/github-auto-fix-agent/flows/github-issue-solver/README.md create mode 100644 kits/agentic/github-auto-fix-agent/flows/github-issue-solver/config.json create mode 100644 kits/agentic/github-auto-fix-agent/flows/github-issue-solver/inputs.json create mode 100644 kits/agentic/github-auto-fix-agent/flows/github-issue-solver/meta.json create mode 100644 kits/agentic/github-auto-fix-agent/lib/lamatic-client.ts create mode 100644 kits/agentic/github-auto-fix-agent/next.config.ts create mode 100644 kits/agentic/github-auto-fix-agent/package-lock.json create mode 100644 kits/agentic/github-auto-fix-agent/package.json create mode 100644 kits/agentic/github-auto-fix-agent/postcss.config.mjs create mode 100644 kits/agentic/github-auto-fix-agent/public/file.svg create mode 100644 kits/agentic/github-auto-fix-agent/public/globe.svg create mode 100644 kits/agentic/github-auto-fix-agent/public/next.svg create mode 100644 kits/agentic/github-auto-fix-agent/public/vercel.svg create mode 100644 kits/agentic/github-auto-fix-agent/public/window.svg create mode 100644 kits/agentic/github-auto-fix-agent/tsconfig.json diff --git a/kits/agentic/github-auto-fix-agent/.gitignore b/kits/agentic/github-auto-fix-agent/.gitignore new file mode 100644 index 00000000..5ef6a520 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/kits/agentic/github-auto-fix-agent/AGENTS.md b/kits/agentic/github-auto-fix-agent/AGENTS.md new file mode 100644 index 00000000..8bd0e390 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/AGENTS.md @@ -0,0 +1,5 @@ + +# This is NOT the Next.js you know + +This version has breaking changes โ€” APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices. + diff --git a/kits/agentic/github-auto-fix-agent/CLAUDE.md b/kits/agentic/github-auto-fix-agent/CLAUDE.md new file mode 100644 index 00000000..43c994c2 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/CLAUDE.md @@ -0,0 +1 @@ +@AGENTS.md diff --git a/kits/agentic/github-auto-fix-agent/README.md b/kits/agentic/github-auto-fix-agent/README.md new file mode 100644 index 00000000..e215bc4c --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/README.md @@ -0,0 +1,36 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts new file mode 100644 index 00000000..deea98ed --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts @@ -0,0 +1,143 @@ +"use server"; + +import { lamaticClient } from "@/lib/lamatic-client"; + +export async function handleFixIssue(input: { + issue_url: string; + file_path?: string; + file_content?: string; +}) { + try { + console.log("[agent] Input:", input); + + const flowId = process.env.GITHUB_AUTO_FIX; + console.log("FLOW ID:", flowId); + if (!flowId) throw new Error("Missing flow ID"); + + // ๐Ÿ”ฅ Step 1: Run Lamatic Flow + const resData = await lamaticClient.executeFlow(flowId, input); + + if (resData.status !== "success" || !resData.result) { + throw new Error(resData.message || "Lamatic flow failed"); + } + + const result = resData.result; + + const { analysis, fix, pr } = result; + + console.log("[agent] Flow output:", result); + + // ๐Ÿ”ฅ Step 2: Extract repo info + const match = input.issue_url.match( + /github.com\/(.*?)\/(.*?)\/issues\/(\d+)/, + ); + if (!match) throw new Error("Invalid GitHub issue URL"); + + const [, owner, repo] = match; + + // ๐Ÿ”ฅ Step 3: Get repo default branch + const repoData = await fetch( + `https://api.github.com/repos/${owner}/${repo}`, + { + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + }, + }, + ).then((res) => res.json()); + + const baseBranch = repoData.default_branch; + + // ๐Ÿ”ฅ Step 4: Get latest commit SHA + const refData = await fetch( + `https://api.github.com/repos/${owner}/${repo}/git/ref/heads/${baseBranch}`, + { + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + }, + }, + ).then((res) => res.json()); + + const baseSha = refData.object.sha; + + // ๐Ÿ”ฅ Step 5: Create branch + await fetch(`https://api.github.com/repos/${owner}/${repo}/git/refs`, { + method: "POST", + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + "Content-Type": "application/json", + }, + body: JSON.stringify({ + ref: `refs/heads/${pr.branch_name}`, + sha: baseSha, + }), + }); + + // ๐Ÿ”ฅ Step 6: Get file SHA + if (!input.file_path) { + throw new Error("file_path is required for PR creation"); + } + + const fileData = await fetch( + `https://api.github.com/repos/${owner}/${repo}/contents/${input.file_path}`, + { + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + }, + }, + ).then((res) => res.json()); + + const fileSha = fileData.sha; + + // ๐Ÿ”ฅ Step 7: Update file + await fetch( + `https://api.github.com/repos/${owner}/${repo}/contents/${input.file_path}`, + { + method: "PUT", + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + "Content-Type": "application/json", + }, + body: JSON.stringify({ + message: pr.commit_message, + content: Buffer.from(fix.updated_code).toString("base64"), + branch: pr.branch_name, + sha: fileSha, + }), + }, + ); + + // ๐Ÿ”ฅ Step 8: Create PR + const prRes = await fetch( + `https://api.github.com/repos/${owner}/${repo}/pulls`, + { + method: "POST", + headers: { + Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, + "Content-Type": "application/json", + }, + body: JSON.stringify({ + title: pr.pr_title, + head: pr.branch_name, + base: baseBranch, + body: pr.pr_body, + }), + }, + ); + + const prData = await prRes.json(); + + return { + success: true, + pr_url: prData.html_url, + analysis, + fix, + }; + } catch (error) { + console.error("[agent] Error:", error); + + return { + success: false, + error: error instanceof Error ? error.message : "Unknown error", + }; + } +} diff --git a/kits/agentic/github-auto-fix-agent/app/api/fix/route.ts b/kits/agentic/github-auto-fix-agent/app/api/fix/route.ts new file mode 100644 index 00000000..6d3f5b13 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/app/api/fix/route.ts @@ -0,0 +1,28 @@ +import { handleFixIssue } from "@/actions/orchestrate"; + +export async function POST(req: Request) { + try { + const body = await req.json(); + + if (!body.issue_url) { + return Response.json( + { success: false, error: "issue_url is required" }, + { status: 400 }, + ); + } + + const result = await handleFixIssue(body); + + return Response.json(result); + } catch (error) { + console.error("[API ERROR]", error); + + return Response.json( + { + success: false, + error: "Internal server error", + }, + { status: 500 }, + ); + } +} diff --git a/kits/agentic/github-auto-fix-agent/app/favicon.ico b/kits/agentic/github-auto-fix-agent/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/kits/agentic/github-auto-fix-agent/app/globals.css b/kits/agentic/github-auto-fix-agent/app/globals.css new file mode 100644 index 00000000..87f748a4 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/app/globals.css @@ -0,0 +1,84 @@ +@import "tailwindcss"; + +:root { + --background: #FFFDF7; + --foreground: #1a1a1a; + + /* Yellow Primary Palette */ + --primary-50: #FFFEF5; + --primary-100: #FFFCE8; + --primary-200: #FFF8C5; + --primary-300: #FFF09E; + --primary-400: #FFE566; + --primary-500: #FACC15; + --primary-600: #EAB308; + --primary-700: #CA8A04; + --primary-800: #A16207; + --primary-900: #854D0E; + + /* Neutrals */ + --surface: #FFFFFF; + --surface-raised: #FFFEF9; + --border-light: #F3F0E8; + --border-medium: #E8E3D7; + --text-primary: #1C1917; + --text-secondary: #57534E; + --text-tertiary: #A8A29E; +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-primary-50: var(--primary-50); + --color-primary-100: var(--primary-100); + --color-primary-200: var(--primary-200); + --color-primary-300: var(--primary-300); + --color-primary-400: var(--primary-400); + --color-primary-500: var(--primary-500); + --color-primary-600: var(--primary-600); + --color-primary-700: var(--primary-700); + --color-primary-800: var(--primary-800); + --color-primary-900: var(--primary-900); + --color-surface: var(--surface); + --color-surface-raised: var(--surface-raised); + --color-border-light: var(--border-light); + --color-border-medium: var(--border-medium); + --color-text-primary: var(--text-primary); + --color-text-secondary: var(--text-secondary); + --color-text-tertiary: var(--text-tertiary); + --font-sans: var(--font-geist-sans); + --font-mono: var(--font-geist-mono); +} + +body { + background: var(--background); + color: var(--foreground); + font-family: var(--font-sans), Arial, Helvetica, sans-serif; +} + +/* Custom scrollbar */ +::-webkit-scrollbar { + width: 6px; +} +::-webkit-scrollbar-track { + background: transparent; +} +::-webkit-scrollbar-thumb { + background: var(--primary-300); + border-radius: 3px; +} +::-webkit-scrollbar-thumb:hover { + background: var(--primary-400); +} + +/* Selection */ +::selection { + background: var(--primary-200); + color: var(--primary-900); +} + +/* Smooth focus rings */ +*:focus-visible { + outline: 2px solid var(--primary-500); + outline-offset: 2px; +} diff --git a/kits/agentic/github-auto-fix-agent/app/layout.tsx b/kits/agentic/github-auto-fix-agent/app/layout.tsx new file mode 100644 index 00000000..3e314c2b --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/app/layout.tsx @@ -0,0 +1,36 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geistSans = Geist({ + variable: "--font-geist-sans", + subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "GitHub Auto Fix Agent โ€” AI-Powered Issue Resolution", + description: + "Provide a GitHub issue URL. Our intelligent agent analyzes the root cause, generates a fix, and creates a Pull Request automatically.", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + {children} + + + ); +} diff --git a/kits/agentic/github-auto-fix-agent/app/page.tsx b/kits/agentic/github-auto-fix-agent/app/page.tsx new file mode 100644 index 00000000..7a99ef83 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/app/page.tsx @@ -0,0 +1,84 @@ +"use client"; + +import { useState } from "react"; +import { AnimatePresence } from "framer-motion"; +import BackgroundDecoration from "@/components/BackgroundDecoration"; +import Header from "@/components/Header"; +import IssueForm from "@/components/IssueForm"; +import SuccessResult from "@/components/SuccessResult"; +import ErrorResult from "@/components/ErrorResult"; +import Footer from "@/components/Footer"; + +export default function Home() { + const [issueUrl, setIssueUrl] = useState(""); + const [filePath, setFilePath] = useState(""); + const [loading, setLoading] = useState(false); + const [result, setResult] = useState(null); + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + if (!issueUrl) return alert("Enter issue URL"); + + setLoading(true); + setResult(null); + + try { + const res = await fetch("/api/fix", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + issue_url: issueUrl, + file_path: filePath, + }), + }); + if (!res.ok) { + const text = await res.text(); + console.error("API ERROR:", text); + throw new Error("API failed"); + } + + const data = await res.json(); + setResult(data); + } catch (err) { + console.error(err); + setResult({ + success: false, + error: "An unexpected error occurred while processing the request.", + }); + } + + setLoading(false); + }; + + return ( +
+ + +
+
+ + + + + {result && + (result.success ? ( + + ) : ( + + ))} + + +
+
+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/BackgroundDecoration.tsx b/kits/agentic/github-auto-fix-agent/components/BackgroundDecoration.tsx new file mode 100644 index 00000000..d375fd2d --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/BackgroundDecoration.tsx @@ -0,0 +1,30 @@ +"use client"; + +export default function BackgroundDecoration() { + return ( +
+ {/* Top yellow glow */} +
+ + {/* Floating orbs */} +
+
+
+ + {/* Subtle grid pattern */} +
+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/ErrorResult.tsx b/kits/agentic/github-auto-fix-agent/components/ErrorResult.tsx new file mode 100644 index 00000000..e8b55841 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/ErrorResult.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { motion } from "framer-motion"; +import { AlertCircle } from "lucide-react"; + +interface ErrorResultProps { + error?: string; +} + +export default function ErrorResult({ error }: ErrorResultProps) { + return ( + +
+ +
+
+

Agent Error

+

+ {error || + "An unknown error occurred while trying to process the issue."} +

+
+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/Footer.tsx b/kits/agentic/github-auto-fix-agent/components/Footer.tsx new file mode 100644 index 00000000..a45b7fe6 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/Footer.tsx @@ -0,0 +1,18 @@ +"use client"; + +import { Github, Zap } from "lucide-react"; + +export default function Footer() { + return ( +
+
+ + Powered by + Lamatic AI + ยท + + GitHub Auto Fix Agent +
+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/Header.tsx b/kits/agentic/github-auto-fix-agent/components/Header.tsx new file mode 100644 index 00000000..7c8850bc --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/Header.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { motion } from "framer-motion"; +import { Bot, Github, Sparkles } from "lucide-react"; + +export default function Header() { + return ( +
+ {/* Animated icon */} + +
+ +
+ {/* Floating accent badges */} + + + + + + +
+ + + GitHub{" "} + + Auto Fix + {" "} + Agent + + + + Provide a GitHub issue URL and a file path. Our intelligent agent will + analyze the root cause, generate a fix, and create a Pull Request + automatically. + +
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx b/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx new file mode 100644 index 00000000..6a071ee9 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx @@ -0,0 +1,102 @@ +"use client"; + +import { motion } from "framer-motion"; +import { Github, FileCode2, Loader2, Zap } from "lucide-react"; + +interface IssueFormProps { + issueUrl: string; + setIssueUrl: (url: string) => void; + filePath: string; + setFilePath: (path: string) => void; + loading: boolean; + onSubmit: (e: React.FormEvent) => void; +} + +export default function IssueForm({ + issueUrl, + setIssueUrl, + filePath, + setFilePath, + loading, + onSubmit, +}: IssueFormProps) { + return ( + +
+
+ {/* Issue URL */} +
+ +
+
+ +
+ setIssueUrl(e.target.value)} + required + /> +
+
+ + {/* File Path */} +
+ +
+
+ +
+ setFilePath(e.target.value)} + /> +
+
+
+ + {/* Submit Button */} + +
+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx b/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx new file mode 100644 index 00000000..6483f62e --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx @@ -0,0 +1,147 @@ +"use client"; + +import { motion } from "framer-motion"; +import { + CheckCircle2, + ExternalLink, + FileSearch, + AlertCircle, + Bot, + Terminal, +} from "lucide-react"; + +interface SuccessResultProps { + result: { + pr_url?: string; + analysis?: { summary?: string; root_cause?: string }; + fix?: { explanation?: string; diff?: string }; + }; +} + +export default function SuccessResult({ result }: SuccessResultProps) { + return ( + + {/* Success Banner */} +
+
+
+ +
+
+

+ Fix Successfully Applied! +

+

+ The agent has analyzed the issue and created a patch. +

+
+
+ {result.pr_url && ( + + View Pull Request + + + )} +
+ + {/* Analysis Cards */} +
+ } + title="Analysis" + content={result.analysis?.summary || "No summary provided."} + /> + } + title="Root Cause" + content={ + result.analysis?.root_cause || "No root cause identified." + } + /> +
+ + {/* AI Explanation */} +
+
+
+ +
+

AI Explanation

+
+

+ {result.fix?.explanation || + "No explanation provided for the fix."} +

+
+ + {/* Code Diff */} +
+
+
+ + + Suggested Fix (Diff) + +
+
+ + + +
+
+
+
+             {
+                        if (line.startsWith("+"))
+                          return `${line}`;
+                        if (line.startsWith("-"))
+                          return `${line}`;
+                        return `${line}`;
+                      }
+                    )
+                  : "No diff available.",
+              }}
+            />
+          
+
+
+
+ ); +} + +function ResultCard({ + icon, + title, + content, +}: { + icon: React.ReactNode; + title: string; + content: string; +}) { + return ( +
+
+
{icon}
+

{title}

+
+

{content}

+
+ ); +} diff --git a/kits/agentic/github-auto-fix-agent/eslint.config.mjs b/kits/agentic/github-auto-fix-agent/eslint.config.mjs new file mode 100644 index 00000000..05e726d1 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/eslint.config.mjs @@ -0,0 +1,18 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + // Override default ignores of eslint-config-next. + globalIgnores([ + // Default ignores of eslint-config-next: + ".next/**", + "out/**", + "build/**", + "next-env.d.ts", + ]), +]); + +export default eslintConfig; diff --git a/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/README.md b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/README.md new file mode 100644 index 00000000..d571c33e --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/README.md @@ -0,0 +1,63 @@ +# github-issue-solver + +## About This Flow + +This flow automates a workflow with **7 nodes** working together to process and transform data. The flow is designed to streamline operations and can be easily integrated into your existing systems. + +## Flow Components + +This workflow includes the following node types: +- API Request +- Generate JSON +- API +- API Response + +## Configuration Requirements + +This flow requires configuration for **4 node(s)** with private inputs (credentials, API keys, model selections, etc.). All required configurations are documented in the `inputs.json` file. + +## Files Included + +- **config.json** - Complete flow structure with nodes and connections +- **inputs.json** - Private inputs requiring configuration +- **meta.json** - Flow metadata and information + +## Next Steps + +### Share with the Community + +Help grow the Lamatic ecosystem by contributing this flow to AgentKit! + +1. **Fork the Repository** + - Visit [github.com/Lamatic/AgentKit](https://github.com/Lamatic/AgentKit) + - Fork the repository to your GitHub account + +2. **Prepare Your Submission** + - Create a new folder with a descriptive name for your flow + - Add all files from this package (`config.json`, `inputs.json`, `meta.json`) + - Write a comprehensive README.md that includes: + - Clear description of what the flow does + - Use cases and benefits + - Step-by-step setup instructions + - Required credentials and how to obtain them + - Example inputs and expected outputs + - Screenshots or diagrams (optional but recommended) + +3. **Open a Pull Request** + - Commit your changes with a descriptive message + - Push to your forked repository + - Open a PR to [github.com/Lamatic/AgentKit](https://github.com/Lamatic/AgentKit) + - Add a clear description of your flow in the PR + +Your contribution will help others build amazing automations! ๐Ÿš€ + +## Support + +For questions or issues with this flow: +- Review the node documentation for specific integrations +- Check the Lamatic documentation at docs.lamatic.ai +- Contact support for assistance + +--- +*Exported from Lamatic Flow Editor* +*Generated on 3/21/2026* diff --git a/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/config.json b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/config.json new file mode 100644 index 00000000..457a97b6 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/config.json @@ -0,0 +1,302 @@ +{ + "nodes": [ + { + "id": "triggerNode_1", + "data": { + "modes": {}, + "nodeId": "graphqlNode", + "values": { + "id": "triggerNode_1", + "nodeName": "API Request", + "responeType": "realtime", + "advance_schema": "{\n \"issue_url\": \"string\",\n \"file_path\": \"string\",\n \"file_content\": \"string\"\n}" + }, + "trigger": true + }, + "type": "triggerNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 0 + }, + "selected": false + }, + { + "id": "InstructorLLMNode_142", + "data": { + "label": "dynamicNode node", + "modes": {}, + "nodeId": "InstructorLLMNode", + "values": { + "id": "InstructorLLMNode_142", + "tools": [], + "schema": "{\n \"type\": \"object\",\n \"properties\": {\n \"issue_url\": {\n \"type\": \"string\"\n },\n \"repo_owner\": {\n \"type\": \"string\"\n },\n \"repo_name\": {\n \"type\": \"string\"\n },\n \"issue_number\": {\n \"type\": \"string\"\n },\n \"file_path\": {\n \"type\": \"string\"\n },\n \"file_content\": {\n \"type\": \"string\"\n }\n }\n}", + "prompts": [ + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7b", + "role": "system", + "content": "You are a strict JSON parser.\nYour task is to extract repository details from a GitHub issue URL.\nYou must:\n- Extract repo_owner, repo_name, and issue_number from the issue_url\n- Copy file_path and file_content if provided\nRules:\n- Always return valid JSON\n- No explanations\n- No markdown\n- If extraction fails, return empty strings" + }, + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7d", + "role": "user", + "content": "Extract:\n- issue_url\n- repo_owner\n- repo_name\n- issue_number\n- file_path\n- file_content\nExample:\nhttps://github.com/facebook/react/issues/123\nโ†’ repo_owner: facebook\nโ†’ repo_name: react\nโ†’ issue_number: 123issue_url: https://github.com/hyperjump-io/json-schema-errors/issues/175\nfile_content: {{triggerNode_1.output.file_content}}\nfile_path: {{triggerNode_1.output.file_path}}" + } + ], + "memories": "[]", + "messages": "[]", + "nodeName": "Generate JSON", + "attachments": "", + "generativeModelName": "" + } + }, + "type": "dynamicNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 130 + }, + "selected": false + }, + { + "id": "apiNode_840", + "data": { + "label": "dynamicNode node", + "logic": [], + "modes": {}, + "nodeId": "apiNode", + "values": { + "id": "apiNode_840", + "url": "https://api.github.com/repos/{{InstructorLLMNode_142.output.repo_owner}}/{{InstructorLLMNode_142.output.repo_name}}/issues/{{InstructorLLMNode_142.output.issue_number}}", + "body": "", + "method": "GET", + "headers": "{\"Accept\":\"application/vnd.github+json\",\"User-Agent\":\"lamatic-agent\"}", + "retries": "2", + "nodeName": "API", + "retry_deplay": "1", + "convertXmlResponseToJson": false + } + }, + "type": "dynamicNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 260 + }, + "selected": false + }, + { + "id": "InstructorLLMNode_361", + "data": { + "label": "dynamicNode node", + "modes": {}, + "nodeId": "InstructorLLMNode", + "values": { + "id": "InstructorLLMNode_361", + "tools": [], + "schema": "{\n \"type\": \"object\",\n \"properties\": {\n \"summary\": {\n \"type\": \"string\"\n },\n \"root_cause\": {\n \"type\": \"string\"\n },\n \"affected_area\": {\n \"type\": \"string\"\n },\n \"confidence\": {\n \"type\": \"string\"\n }\n }\n}", + "prompts": [ + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7b", + "role": "system", + "content": "You are a senior software engineer.\nYour task is to analyze a GitHub issue and identify the root problem.\nYou must:\n- Understand the issue title and description\n- Identify the actual problem being discussed\n- Explain the root cause clearly\n- Suggest which part of the codebase is affected\nRules:\n- Be precise and technical\n- Do not hallucinate unknown details\n- If context is insufficient, say \"Insufficient context\"\n- Always return structured JSON" + }, + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7d", + "role": "user", + "content": "Analyze the issue and return:\n- summary\n- root_cause\n- affected_area\n- confidence (low | medium | high)Issue URL: {{triggerNode_1.output.issue_url}}\nTitle: {{apiNode_840.output.title}}\nDescription: {{apiNode_840.output.body}}\nFile content: {{triggerNode_1.output.file_content}}" + } + ], + "memories": "[]", + "messages": "[]", + "nodeName": "Generate JSON", + "attachments": "", + "generativeModelName": "" + } + }, + "type": "dynamicNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 390 + }, + "selected": false + }, + { + "id": "InstructorLLMNode_239", + "data": { + "label": "dynamicNode node", + "modes": {}, + "nodeId": "InstructorLLMNode", + "values": { + "id": "InstructorLLMNode_239", + "tools": [], + "schema": "{\n \"type\": \"object\",\n \"properties\": {\n \"updated_code\": {\n \"type\": \"string\"\n },\n \"diff\": {\n \"type\": \"string\"\n },\n \"explanation\": {\n \"type\": \"string\"\n }\n }\n}", + "prompts": [ + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7b", + "role": "system", + "content": "You are a senior software engineer fixing a bug.\nYour task is to generate a precise and minimal fix based on the issue analysis.\nYou must:\n- Fix only what is necessary\n- Keep code clean and production-ready\n- Avoid unnecessary changes\nRules:\n- If file_content is provided โ†’ modify it\n- If file_content is NOT provided โ†’ generate a plausible fix snippet\n- Always return structured JSON\n- Do not include explanations outside JSON" + }, + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7d", + "role": "user", + "content": "Generate:1. updated_code (full corrected code or snippet)2. diff (optional but preferred, in git diff format)3. explanation (short technical explanation)Issue Summary: {{InstructorLLMNode_361.output.issue_summary}}\nRoot Cause: {{InstructorLLMNode_361.output.root_cause}}\nAffected Area: {{InstructorLLMNode_361.output.affected_area}}\nFile Path: {{InstructorLLMNode_142.output.file_path}}\nFile Content: {{InstructorLLMNode_142.output.file_content}}" + } + ], + "memories": "[]", + "messages": "[]", + "nodeName": "Generate JSON", + "attachments": "", + "generativeModelName": "" + } + }, + "type": "dynamicNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 520 + }, + "selected": false + }, + { + "id": "InstructorLLMNode_233", + "data": { + "label": "dynamicNode node", + "modes": {}, + "nodeId": "InstructorLLMNode", + "values": { + "id": "InstructorLLMNode_233", + "tools": [], + "schema": "{\n \"type\": \"object\",\n \"properties\": {\n \"branch_name\": {\n \"type\": \"string\"\n },\n \"commit_message\": {\n \"type\": \"string\"\n },\n \"pr_title\": {\n \"type\": \"string\"\n },\n \"pr_body\": {\n \"type\": \"string\"\n }\n }\n}", + "prompts": [ + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7b", + "role": "system", + "content": "You are a software engineer preparing a GitHub pull request.\nYour task is to generate clean and professional PR metadata.\nYou must:\n- Create a meaningful branch name\n- Write a concise commit message\n- Write a clear PR title\n- Write a helpful PR description\nRules:\n- Keep everything short and professional\n- Follow common GitHub conventions\n- Use lowercase and hyphenated branch names\n- Do not include unnecessary text\n- Output only valid JSON" + }, + { + "id": "187c2f4b-c23d-4545-abef-73dc897d6b7d", + "role": "user", + "content": "Generate:- branch_name- commit_message- pr_title- pr_bodyIssue Summary: {{InstructorLLMNode_361.output.summary}}\nFix explanation: {{InstructorLLMNode_239.output.explanation}}\nFile path: {{InstructorLLMNode_142.output.file_path}}" + } + ], + "memories": "[]", + "messages": "[]", + "nodeName": "Generate JSON", + "attachments": "", + "generativeModelName": "" + } + }, + "type": "dynamicNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 650 + }, + "selected": true + }, + { + "id": "responseNode_triggerNode_1", + "data": { + "label": "Response", + "nodeId": "graphqlResponseNode", + "values": { + "headers": "{\"content-type\":\"application/json\"}", + "retries": "0", + "nodeName": "API Response", + "webhookUrl": "", + "retry_delay": "0", + "outputMapping": "{}" + }, + "isResponseNode": true + }, + "type": "responseNode", + "measured": { + "width": 216, + "height": 93 + }, + "position": { + "x": 0, + "y": 780 + }, + "selected": false + } + ], + "edges": [ + { + "id": "triggerNode_1-InstructorLLMNode_142", + "type": "defaultEdge", + "source": "triggerNode_1", + "target": "InstructorLLMNode_142", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "InstructorLLMNode_142-apiNode_840", + "type": "defaultEdge", + "source": "InstructorLLMNode_142", + "target": "apiNode_840", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "apiNode_840-InstructorLLMNode_361", + "type": "defaultEdge", + "source": "apiNode_840", + "target": "InstructorLLMNode_361", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "InstructorLLMNode_361-InstructorLLMNode_239-542", + "type": "defaultEdge", + "source": "InstructorLLMNode_361", + "target": "InstructorLLMNode_239", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "InstructorLLMNode_239-InstructorLLMNode_233", + "type": "defaultEdge", + "source": "InstructorLLMNode_239", + "target": "InstructorLLMNode_233", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "InstructorLLMNode_233-responseNode_triggerNode_1", + "type": "defaultEdge", + "source": "InstructorLLMNode_233", + "target": "responseNode_triggerNode_1", + "sourceHandle": "bottom", + "targetHandle": "top" + }, + { + "id": "response-trigger_triggerNode_1", + "type": "responseEdge", + "source": "triggerNode_1", + "target": "responseNode_triggerNode_1", + "sourceHandle": "to-response", + "targetHandle": "from-trigger" + } + ] +} \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/inputs.json b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/inputs.json new file mode 100644 index 00000000..897cb56f --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/inputs.json @@ -0,0 +1,98 @@ +{ + "InstructorLLMNode_142": [ + { + "name": "generativeModelName", + "label": "Generative Model Name", + "type": "model", + "mode": "instructor", + "description": "Select the model to generate text based on the prompt.", + "modelType": "generator/text", + "required": true, + "isPrivate": true, + "defaultValue": [ + { + "configName": "configA", + "type": "generator/text", + "provider_name": "", + "credential_name": "", + "params": {} + } + ], + "typeOptions": { + "loadOptionsMethod": "listModels" + } + } + ], + "InstructorLLMNode_361": [ + { + "name": "generativeModelName", + "label": "Generative Model Name", + "type": "model", + "mode": "instructor", + "description": "Select the model to generate text based on the prompt.", + "modelType": "generator/text", + "required": true, + "isPrivate": true, + "defaultValue": [ + { + "configName": "configA", + "type": "generator/text", + "provider_name": "", + "credential_name": "", + "params": {} + } + ], + "typeOptions": { + "loadOptionsMethod": "listModels" + } + } + ], + "InstructorLLMNode_239": [ + { + "name": "generativeModelName", + "label": "Generative Model Name", + "type": "model", + "mode": "instructor", + "description": "Select the model to generate text based on the prompt.", + "modelType": "generator/text", + "required": true, + "isPrivate": true, + "defaultValue": [ + { + "configName": "configA", + "type": "generator/text", + "provider_name": "", + "credential_name": "", + "params": {} + } + ], + "typeOptions": { + "loadOptionsMethod": "listModels" + } + } + ], + "InstructorLLMNode_233": [ + { + "name": "generativeModelName", + "label": "Generative Model Name", + "type": "model", + "mode": "instructor", + "description": "Select the model to generate text based on the prompt.", + "modelType": "generator/text", + "required": true, + "isPrivate": true, + "defaultValue": [ + { + "configName": "configA", + "type": "generator/text", + "provider_name": "", + "credential_name": "", + "params": {} + } + ], + "typeOptions": { + "loadOptionsMethod": "listModels" + } + } + ] +} \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/meta.json b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/meta.json new file mode 100644 index 00000000..bda1165a --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/flows/github-issue-solver/meta.json @@ -0,0 +1,9 @@ +{ + "name": "github-issue-solver", + "description": "", + "tags": [], + "testInput": "", + "githubUrl": "", + "documentationUrl": "", + "deployUrl": "" +} \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/lib/lamatic-client.ts b/kits/agentic/github-auto-fix-agent/lib/lamatic-client.ts new file mode 100644 index 00000000..d26705f2 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/lib/lamatic-client.ts @@ -0,0 +1,16 @@ +import { Lamatic } from "lamatic"; + +if ( + !process.env.LAMATIC_API_URL || + !process.env.LAMATIC_PROJECT_ID || + !process.env.LAMATIC_API_KEY +) { + throw new Error("Missing Lamatic environment variables"); +} + +export const lamaticClient = new Lamatic({ + endpoint: process.env.LAMATIC_API_URL, + projectId: process.env.LAMATIC_PROJECT_ID, + apiKey: process.env.LAMATIC_API_KEY, +}); + diff --git a/kits/agentic/github-auto-fix-agent/next.config.ts b/kits/agentic/github-auto-fix-agent/next.config.ts new file mode 100644 index 00000000..e9ffa308 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ +}; + +export default nextConfig; diff --git a/kits/agentic/github-auto-fix-agent/package-lock.json b/kits/agentic/github-auto-fix-agent/package-lock.json new file mode 100644 index 00000000..090d971c --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/package-lock.json @@ -0,0 +1,6665 @@ +{ + "name": "github-auto-fix-agent", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "github-auto-fix-agent", + "version": "0.1.0", + "dependencies": { + "framer-motion": "^12.38.0", + "lamatic": "^0.3.2", + "lucide-react": "^0.577.0", + "next": "16.2.1", + "react": "19.2.4", + "react-dom": "19.2.4" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.2.1", + "tailwindcss": "^4", + "typescript": "^5" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz", + "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz", + "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz", + "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@next/env": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.1.tgz", + "integrity": "sha512-n8P/HCkIWW+gVal2Z8XqXJ6aB3J0tuM29OcHpCsobWlChH/SITBs1DFBk/HajgrwDkqqBXPbuUuzgDvUekREPg==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.2.1.tgz", + "integrity": "sha512-r0epZGo24eT4g08jJlg2OEryBphXqO8aL18oajoTKLzHJ6jVr6P6FI58DLMug04MwD3j8Fj0YK0slyzneKVyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.1.tgz", + "integrity": "sha512-BwZ8w8YTaSEr2HIuXLMLxIdElNMPvY9fLqb20LX9A9OMGtJilhHLbCL3ggyd0TwjmMcTxi0XXt+ur1vWUoxj2Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.1.tgz", + "integrity": "sha512-/vrcE6iQSJq3uL3VGVHiXeaKbn8Es10DGTGRJnRZlkNQQk3kaNtAJg8Y6xuAlrx/6INKVjkfi5rY0iEXorZ6uA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.1.tgz", + "integrity": "sha512-uLn+0BK+C31LTVbQ/QU+UaVrV0rRSJQ8RfniQAHPghDdgE+SlroYqcmFnO5iNjNfVWCyKZHYrs3Nl0mUzWxbBw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.1.tgz", + "integrity": "sha512-ssKq6iMRnHdnycGp9hCuGnXJZ0YPr4/wNwrfE5DbmvEcgl9+yv97/Kq3TPVDfYome1SW5geciLB9aiEqKXQjlQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.1.tgz", + "integrity": "sha512-HQm7SrHRELJ30T1TSmT706IWovFFSRGxfgUkyWJZF/RKBMdbdRWJuFrcpDdE5vy9UXjFOx6L3mRdqH04Mmx0hg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.1.tgz", + "integrity": "sha512-aV2iUaC/5HGEpbBkE+4B8aHIudoOy5DYekAKOMSHoIYQ66y/wIVeaRx8MS2ZMdxe/HIXlMho4ubdZs/J8441Tg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.1.tgz", + "integrity": "sha512-IXdNgiDHaSk0ZUJ+xp0OQTdTgnpx1RCfRTalhn3cjOP+IddTMINwA7DXZrwTmGDO8SUr5q2hdP/du4DcrB1GxA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.1.tgz", + "integrity": "sha512-qvU+3a39Hay+ieIztkGSbF7+mccbbg1Tk25hc4JDylf8IHjYmY/Zm64Qq1602yPyQqvie+vf5T/uPwNxDNIoeg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "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, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", + "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", + "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-x64": "4.2.2", + "@tailwindcss/oxide-freebsd-x64": "4.2.2", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-x64-musl": "4.2.2", + "@tailwindcss/oxide-wasm32-wasi": "4.2.2", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", + "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", + "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", + "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", + "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", + "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", + "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", + "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", + "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", + "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", + "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", + "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", + "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.2.tgz", + "integrity": "sha512-n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.2.2", + "@tailwindcss/oxide": "4.2.2", + "postcss": "^8.5.6", + "tailwindcss": "4.2.2" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.19.37", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.37.tgz", + "integrity": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.1.tgz", + "integrity": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.57.1", + "@typescript-eslint/type-utils": "8.57.1", + "@typescript-eslint/utils": "8.57.1", + "@typescript-eslint/visitor-keys": "8.57.1", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.57.1", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.1.tgz", + "integrity": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.57.1", + "@typescript-eslint/types": "8.57.1", + "@typescript-eslint/typescript-estree": "8.57.1", + "@typescript-eslint/visitor-keys": "8.57.1", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.1.tgz", + "integrity": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.57.1", + "@typescript-eslint/types": "^8.57.1", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.1.tgz", + "integrity": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.1", + "@typescript-eslint/visitor-keys": "8.57.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.1.tgz", + "integrity": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.1.tgz", + "integrity": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.1", + "@typescript-eslint/typescript-estree": "8.57.1", + "@typescript-eslint/utils": "8.57.1", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.1.tgz", + "integrity": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.1.tgz", + "integrity": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.57.1", + "@typescript-eslint/tsconfig-utils": "8.57.1", + "@typescript-eslint/types": "8.57.1", + "@typescript-eslint/visitor-keys": "8.57.1", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz", + "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz", + "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.1.tgz", + "integrity": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.57.1", + "@typescript-eslint/types": "8.57.1", + "@typescript-eslint/typescript-estree": "8.57.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.1.tgz", + "integrity": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.1", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "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, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz", + "integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.9", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz", + "integrity": "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "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" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001780", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001780.tgz", + "integrity": "sha512-llngX0E7nQci5BPJDqoZSbuZ5Bcs9F5db7EtgfwBerX9XGtkkiO4NwfDDIRzHTTwcYC8vC7bmeUEPGrKlR/TkQ==", + "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" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "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, + "license": "MIT", + "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, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.321", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.321.tgz", + "integrity": "sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==", + "dev": true, + "license": "ISC" + }, + "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, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.1.tgz", + "integrity": "sha512-zWwRvqWiuBPr0muUG/78cW3aHROFCNIQ3zpmYDpwdbnt2m+xlNyRWpHBpa2lJjSBit7BQ+RXA1iwbSmu5yJ/EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.1", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.2.1.tgz", + "integrity": "sha512-qhabwjQZ1Mk53XzXvmogf8KQ0tG0CQXF0CZ56+2/lVhmObgmaqj7x5A1DSrWdZd3kwI7GTPGUjFne+krRxYmFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "16.2.1", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" + }, + "peerDependencies": { + "eslint": ">=9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz", + "integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "license": "MIT", + "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, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/framer-motion": { + "version": "12.38.0", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.38.0.tgz", + "integrity": "sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g==", + "license": "MIT", + "dependencies": { + "motion-dom": "^12.38.0", + "motion-utils": "^12.36.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "@emotion/is-prop-valid": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/is-prop-valid": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "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, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.6", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz", + "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "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, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/lamatic": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/lamatic/-/lamatic-0.3.2.tgz", + "integrity": "sha512-oOIpnJmjOxlMuViFsmI3LsbEMFxB7unZXplqgzKeu9hy87kqxP1/K1gU6NMQU+98iy1A3XbW7aQSfSLxvYq3sA==", + "license": "MIT" + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "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==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.577.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.577.0.tgz", + "integrity": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/motion-dom": { + "version": "12.38.0", + "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.38.0.tgz", + "integrity": "sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA==", + "license": "MIT", + "dependencies": { + "motion-utils": "^12.36.0" + } + }, + "node_modules/motion-utils": { + "version": "12.36.0", + "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.36.0.tgz", + "integrity": "sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "16.2.1", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.1.tgz", + "integrity": "sha512-VaChzNL7o9rbfdt60HUj8tev4m6d7iC1igAy157526+cJlXOQu5LzsBXNT+xaJnTP/k+utSX5vMv7m0G+zKH+Q==", + "license": "MIT", + "dependencies": { + "@next/env": "16.2.1", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.2.1", + "@next/swc-darwin-x64": "16.2.1", + "@next/swc-linux-arm64-gnu": "16.2.1", + "@next/swc-linux-arm64-musl": "16.2.1", + "@next/swc-linux-x64-gnu": "16.2.1", + "@next/swc-linux-x64-musl": "16.2.1", + "@next/swc-win32-arm64-msvc": "16.2.1", + "@next/swc-win32-x64-msvc": "16.2.1", + "sharp": "^0.34.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "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" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", + "dev": true, + "license": "MIT" + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "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" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "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" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "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, + "license": "MIT", + "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, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", + "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.1.tgz", + "integrity": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.57.1", + "@typescript-eslint/parser": "8.57.1", + "@typescript-eslint/typescript-estree": "8.57.1", + "@typescript-eslint/utils": "8.57.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "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" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "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, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", + "dev": true, + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + } + } +} diff --git a/kits/agentic/github-auto-fix-agent/package.json b/kits/agentic/github-auto-fix-agent/package.json new file mode 100644 index 00000000..7005e2b0 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/package.json @@ -0,0 +1,29 @@ +{ + "name": "github-auto-fix-agent", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "eslint" + }, + "dependencies": { + "framer-motion": "^12.38.0", + "lamatic": "^0.3.2", + "lucide-react": "^0.577.0", + "next": "16.2.1", + "react": "19.2.4", + "react-dom": "19.2.4" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.2.1", + "tailwindcss": "^4", + "typescript": "^5" + } +} diff --git a/kits/agentic/github-auto-fix-agent/postcss.config.mjs b/kits/agentic/github-auto-fix-agent/postcss.config.mjs new file mode 100644 index 00000000..61e36849 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/postcss.config.mjs @@ -0,0 +1,7 @@ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/kits/agentic/github-auto-fix-agent/public/file.svg b/kits/agentic/github-auto-fix-agent/public/file.svg new file mode 100644 index 00000000..004145cd --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/public/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/public/globe.svg b/kits/agentic/github-auto-fix-agent/public/globe.svg new file mode 100644 index 00000000..567f17b0 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/public/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/public/next.svg b/kits/agentic/github-auto-fix-agent/public/next.svg new file mode 100644 index 00000000..5174b28c --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/public/vercel.svg b/kits/agentic/github-auto-fix-agent/public/vercel.svg new file mode 100644 index 00000000..77053960 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/public/window.svg b/kits/agentic/github-auto-fix-agent/public/window.svg new file mode 100644 index 00000000..b2b2a44f --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/public/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/tsconfig.json b/kits/agentic/github-auto-fix-agent/tsconfig.json new file mode 100644 index 00000000..3a13f90a --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "target": "ES2017", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "react-jsx", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./*"] + } + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts", + "**/*.mts" + ], + "exclude": ["node_modules"] +} From f953c51e744b295f3a853f0727637a7e9eb69fc9 Mon Sep 17 00:00:00 2001 From: Ritabrata Ghosh <76sonali40@gmail.com> Date: Sun, 22 Mar 2026 14:51:52 +0530 Subject: [PATCH 2/5] upgrade pr --- .../github-auto-fix-agent/.env.example | 5 ++ kits/agentic/github-auto-fix-agent/.gitignore | 2 +- kits/agentic/github-auto-fix-agent/AGENTS.md | 5 -- kits/agentic/github-auto-fix-agent/CLAUDE.md | 1 - kits/agentic/github-auto-fix-agent/README.md | 65 +++++++++++------- .../github-auto-fix-agent/public/flows.png | Bin 0 -> 112805 bytes 6 files changed, 48 insertions(+), 30 deletions(-) create mode 100644 kits/agentic/github-auto-fix-agent/.env.example delete mode 100644 kits/agentic/github-auto-fix-agent/AGENTS.md delete mode 100644 kits/agentic/github-auto-fix-agent/CLAUDE.md create mode 100644 kits/agentic/github-auto-fix-agent/public/flows.png diff --git a/kits/agentic/github-auto-fix-agent/.env.example b/kits/agentic/github-auto-fix-agent/.env.example new file mode 100644 index 00000000..30c65957 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/.env.example @@ -0,0 +1,5 @@ +GITHUB_AUTO_FIX = "YOUR_FLOW_ID" +LAMATIC_API_URL = "YOUR_API_ENDPOINT" +LAMATIC_API_KEY = "YOUR_API_KEY" +LAMATIC_PROJECT_ID = "YOUR_PROJECT_ID" +GITHUB_TOKEN = "YOUR_GITHUB_TOKEN" \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/.gitignore b/kits/agentic/github-auto-fix-agent/.gitignore index 5ef6a520..e72b4d6a 100644 --- a/kits/agentic/github-auto-fix-agent/.gitignore +++ b/kits/agentic/github-auto-fix-agent/.gitignore @@ -31,7 +31,7 @@ yarn-error.log* .pnpm-debug.log* # env files (can opt-in for committing if needed) -.env* +.env # vercel .vercel diff --git a/kits/agentic/github-auto-fix-agent/AGENTS.md b/kits/agentic/github-auto-fix-agent/AGENTS.md deleted file mode 100644 index 8bd0e390..00000000 --- a/kits/agentic/github-auto-fix-agent/AGENTS.md +++ /dev/null @@ -1,5 +0,0 @@ - -# This is NOT the Next.js you know - -This version has breaking changes โ€” APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices. - diff --git a/kits/agentic/github-auto-fix-agent/CLAUDE.md b/kits/agentic/github-auto-fix-agent/CLAUDE.md deleted file mode 100644 index 43c994c2..00000000 --- a/kits/agentic/github-auto-fix-agent/CLAUDE.md +++ /dev/null @@ -1 +0,0 @@ -@AGENTS.md diff --git a/kits/agentic/github-auto-fix-agent/README.md b/kits/agentic/github-auto-fix-agent/README.md index e215bc4c..1b99083e 100644 --- a/kits/agentic/github-auto-fix-agent/README.md +++ b/kits/agentic/github-auto-fix-agent/README.md @@ -1,36 +1,55 @@ -This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). +# GitHub Auto Fix Agent -## Getting Started +An AI-powered agent that analyzes GitHub issues and generates code fixes with ready-to-create pull requests. -First, run the development server: +--- -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` +## Features -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. +- Understands GitHub issues automatically +- Identifies root cause of bugs +- Generates minimal code fixes (diff-based) +- Prepares PR metadata (title, body, branch) +- One-click PR creation -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. +--- -This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. +## How It Works -## Learn More +1. User provides a GitHub issue URL +2. Lamatic flow analyzes the issue +3. AI generates: + - Issue summary + - Root cause + - Code fix (diff) + - PR metadata +4. User reviews and creates PR -To learn more about Next.js, take a look at the following resources: +--- -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. +## Flow Overview -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! +```mermaid +flowchart TD + A[User Input] --> B[Frontend] + B --> C[Backend API] + C --> D[Lamatic Flow] + D --> E[Analysis + Fix + PR Data] + E --> F[Frontend Preview] + F --> G[User Creates PR] + G --> H[GitHub PR Created] +``` -## Deploy on Vercel +## Lamatic Workflow -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +

+ Lamatic Workflow +

-Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. +## Setup Locally + +```bash +cd kits/agentic/github-auto-fix-agent +npm install +cp .env.example .env +npm run dev \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/public/flows.png b/kits/agentic/github-auto-fix-agent/public/flows.png new file mode 100644 index 0000000000000000000000000000000000000000..024c7f0dd505af9ca747ca00ef75b761a58746e5 GIT binary patch literal 112805 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 z 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 Date: Sun, 22 Mar 2026 15:21:55 +0530 Subject: [PATCH 3/5] improvement --- .../actions/orchestrate.ts | 69 ++++++++---- .../app/api/create-pr/route.ts | 32 ++++++ .../github-auto-fix-agent/app/page.tsx | 2 +- .../components/Header.tsx | 4 +- .../components/IssueForm.tsx | 5 +- .../components/SuccessResult.tsx | 101 ++++++++++++++++-- 6 files changed, 181 insertions(+), 32 deletions(-) create mode 100644 kits/agentic/github-auto-fix-agent/app/api/create-pr/route.ts diff --git a/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts index deea98ed..5d6e8220 100644 --- a/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts +++ b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts @@ -2,6 +2,10 @@ import { lamaticClient } from "@/lib/lamatic-client"; +/** + * Step 1: Analyze the issue and generate a fix (NO PR creation). + * Returns analysis, fix data, and PR metadata from the Lamatic flow. + */ export async function handleFixIssue(input: { issue_url: string; file_path?: string; @@ -14,7 +18,7 @@ export async function handleFixIssue(input: { console.log("FLOW ID:", flowId); if (!flowId) throw new Error("Missing flow ID"); - // ๐Ÿ”ฅ Step 1: Run Lamatic Flow + // Run Lamatic Flow const resData = await lamaticClient.executeFlow(flowId, input); if (resData.status !== "success" || !resData.result) { @@ -22,20 +26,53 @@ export async function handleFixIssue(input: { } const result = resData.result; - const { analysis, fix, pr } = result; console.log("[agent] Flow output:", result); - // ๐Ÿ”ฅ Step 2: Extract repo info - const match = input.issue_url.match( + return { + success: true, + analysis, + fix, + pr, // branch_name, commit_message, pr_title, pr_body + }; + } catch (error) { + console.error("[agent] Error:", error); + + return { + success: false, + error: error instanceof Error ? error.message : "Unknown error", + }; + } +} + +/** + * Step 2: Create a GitHub PR using the fix data from Step 1. + * This is called separately only when the user clicks "Create PR". + */ +export async function handleCreatePR(input: { + issue_url: string; + file_path: string; + fix: { updated_code: string }; + pr: { + branch_name: string; + commit_message: string; + pr_title: string; + pr_body: string; + }; +}) { + try { + const { issue_url, file_path, fix, pr } = input; + + // Extract repo info + const match = issue_url.match( /github.com\/(.*?)\/(.*?)\/issues\/(\d+)/, ); if (!match) throw new Error("Invalid GitHub issue URL"); const [, owner, repo] = match; - // ๐Ÿ”ฅ Step 3: Get repo default branch + // Get repo default branch const repoData = await fetch( `https://api.github.com/repos/${owner}/${repo}`, { @@ -47,7 +84,7 @@ export async function handleFixIssue(input: { const baseBranch = repoData.default_branch; - // ๐Ÿ”ฅ Step 4: Get latest commit SHA + // Get latest commit SHA const refData = await fetch( `https://api.github.com/repos/${owner}/${repo}/git/ref/heads/${baseBranch}`, { @@ -59,7 +96,7 @@ export async function handleFixIssue(input: { const baseSha = refData.object.sha; - // ๐Ÿ”ฅ Step 5: Create branch + // Create branch await fetch(`https://api.github.com/repos/${owner}/${repo}/git/refs`, { method: "POST", headers: { @@ -72,13 +109,9 @@ export async function handleFixIssue(input: { }), }); - // ๐Ÿ”ฅ Step 6: Get file SHA - if (!input.file_path) { - throw new Error("file_path is required for PR creation"); - } - + // Get file SHA const fileData = await fetch( - `https://api.github.com/repos/${owner}/${repo}/contents/${input.file_path}`, + `https://api.github.com/repos/${owner}/${repo}/contents/${file_path}`, { headers: { Authorization: `Bearer ${process.env.GITHUB_TOKEN}`, @@ -88,9 +121,9 @@ export async function handleFixIssue(input: { const fileSha = fileData.sha; - // ๐Ÿ”ฅ Step 7: Update file + // Update file on branch await fetch( - `https://api.github.com/repos/${owner}/${repo}/contents/${input.file_path}`, + `https://api.github.com/repos/${owner}/${repo}/contents/${file_path}`, { method: "PUT", headers: { @@ -106,7 +139,7 @@ export async function handleFixIssue(input: { }, ); - // ๐Ÿ”ฅ Step 8: Create PR + // Create PR const prRes = await fetch( `https://api.github.com/repos/${owner}/${repo}/pulls`, { @@ -129,11 +162,9 @@ export async function handleFixIssue(input: { return { success: true, pr_url: prData.html_url, - analysis, - fix, }; } catch (error) { - console.error("[agent] Error:", error); + console.error("[agent] PR creation error:", error); return { success: false, diff --git a/kits/agentic/github-auto-fix-agent/app/api/create-pr/route.ts b/kits/agentic/github-auto-fix-agent/app/api/create-pr/route.ts new file mode 100644 index 00000000..095d90e3 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/app/api/create-pr/route.ts @@ -0,0 +1,32 @@ +import { handleCreatePR } from "@/actions/orchestrate"; + +export async function POST(req: Request) { + try { + const body = await req.json(); + + if (!body.issue_url || !body.file_path || !body.fix || !body.pr) { + return Response.json( + { + success: false, + error: + "issue_url, file_path, fix, and pr are all required", + }, + { status: 400 }, + ); + } + + const result = await handleCreatePR(body); + + return Response.json(result); + } catch (error) { + console.error("[API ERROR]", error); + + return Response.json( + { + success: false, + error: "Internal server error", + }, + { status: 500 }, + ); + } +} diff --git a/kits/agentic/github-auto-fix-agent/app/page.tsx b/kits/agentic/github-auto-fix-agent/app/page.tsx index 7a99ef83..8b6ff407 100644 --- a/kits/agentic/github-auto-fix-agent/app/page.tsx +++ b/kits/agentic/github-auto-fix-agent/app/page.tsx @@ -71,7 +71,7 @@ export default function Home() { {result && (result.success ? ( - + ) : ( ))} diff --git a/kits/agentic/github-auto-fix-agent/components/Header.tsx b/kits/agentic/github-auto-fix-agent/components/Header.tsx index 7c8850bc..29728293 100644 --- a/kits/agentic/github-auto-fix-agent/components/Header.tsx +++ b/kits/agentic/github-auto-fix-agent/components/Header.tsx @@ -58,8 +58,8 @@ export default function Header() { className="text-base md:text-lg text-text-secondary max-w-xl mx-auto leading-relaxed" > Provide a GitHub issue URL and a file path. Our intelligent agent will - analyze the root cause, generate a fix, and create a Pull Request - automatically. + analyze the root cause and generate a fix. You can then create a Pull + Request with one click. ); diff --git a/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx b/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx index 6a071ee9..2ac565f1 100644 --- a/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx +++ b/kits/agentic/github-auto-fix-agent/components/IssueForm.tsx @@ -59,9 +59,6 @@ export default function IssueForm({ htmlFor="filePath" > Target File Path{" "} - - (optional) -
@@ -92,7 +89,7 @@ export default function IssueForm({ ) : ( <> - Fix Issue & Create PR + Fix Issue )} diff --git a/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx b/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx index 6483f62e..12fbd1a9 100644 --- a/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx +++ b/kits/agentic/github-auto-fix-agent/components/SuccessResult.tsx @@ -1,5 +1,6 @@ "use client"; +import { useState } from "react"; import { motion } from "framer-motion"; import { CheckCircle2, @@ -8,17 +9,73 @@ import { AlertCircle, Bot, Terminal, + GitPullRequest, + Loader2, } from "lucide-react"; interface SuccessResultProps { result: { pr_url?: string; analysis?: { summary?: string; root_cause?: string }; - fix?: { explanation?: string; diff?: string }; + fix?: { explanation?: string; diff?: string; updated_code?: string }; + pr?: { + branch_name?: string; + commit_message?: string; + pr_title?: string; + pr_body?: string; + }; }; + issueUrl: string; + filePath: string; } -export default function SuccessResult({ result }: SuccessResultProps) { +export default function SuccessResult({ + result, + issueUrl, + filePath, +}: SuccessResultProps) { + const [prUrl, setPrUrl] = useState(result.pr_url || null); + const [creatingPR, setCreatingPR] = useState(false); + const [prError, setPrError] = useState(null); + + const handleCreatePR = async () => { + if (!result.fix?.updated_code || !result.pr || !filePath) { + setPrError( + "Missing data required to create PR. Make sure file path was provided.", + ); + return; + } + + setCreatingPR(true); + setPrError(null); + + try { + const res = await fetch("/api/create-pr", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ + issue_url: issueUrl, + file_path: filePath, + fix: { updated_code: result.fix.updated_code }, + pr: result.pr, + }), + }); + + const data = await res.json(); + + if (data.success && data.pr_url) { + setPrUrl(data.pr_url); + } else { + setPrError(data.error || "Failed to create pull request."); + } + } catch (err) { + console.error(err); + setPrError("An unexpected error occurred while creating the PR."); + } + + setCreatingPR(false); + }; + return (

- Fix Successfully Applied! + Fix Successfully Generated!

- The agent has analyzed the issue and created a patch. + The agent has analyzed the issue and generated a patch.

- {result.pr_url && ( + + {/* Show "View Pull Request" if PR was created, otherwise show "Create PR" button */} + {prUrl ? ( + ) : ( + )}
+ {/* PR Error */} + {prError && ( + + +

{prError}

+
+ )} + {/* Analysis Cards */}
Date: Sat, 28 Mar 2026 14:45:54 +0530 Subject: [PATCH 4/5] changes:01 --- .../github-auto-fix-agent/.env.example | 10 +++---- .../actions/orchestrate.ts | 18 +++++++----- .../agentic/github-auto-fix-agent/config.json | 28 +++++++++++++++++++ 3 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 kits/agentic/github-auto-fix-agent/config.json diff --git a/kits/agentic/github-auto-fix-agent/.env.example b/kits/agentic/github-auto-fix-agent/.env.example index 30c65957..972cd5a8 100644 --- a/kits/agentic/github-auto-fix-agent/.env.example +++ b/kits/agentic/github-auto-fix-agent/.env.example @@ -1,5 +1,5 @@ -GITHUB_AUTO_FIX = "YOUR_FLOW_ID" -LAMATIC_API_URL = "YOUR_API_ENDPOINT" -LAMATIC_API_KEY = "YOUR_API_KEY" -LAMATIC_PROJECT_ID = "YOUR_PROJECT_ID" -GITHUB_TOKEN = "YOUR_GITHUB_TOKEN" \ No newline at end of file +GITHUB_AUTO_FIX="YOUR_FLOW_ID" +LAMATIC_API_URL="YOUR_API_ENDPOINT" +LAMATIC_API_KEY="YOUR_API_KEY" +LAMATIC_PROJECT_ID="YOUR_PROJECT_ID" +GITHUB_TOKEN="YOUR_GITHUB_TOKEN" \ No newline at end of file diff --git a/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts index 5d6e8220..c4ad20e1 100644 --- a/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts +++ b/kits/agentic/github-auto-fix-agent/actions/orchestrate.ts @@ -12,10 +12,12 @@ export async function handleFixIssue(input: { file_content?: string; }) { try { - console.log("[agent] Input:", input); - + console.log("[agent] Input received", { + hasIssueUrl: Boolean(input.issue_url), + hasFilePath: Boolean(input.file_path), + hasFileContent: Boolean(input.file_content), + }); const flowId = process.env.GITHUB_AUTO_FIX; - console.log("FLOW ID:", flowId); if (!flowId) throw new Error("Missing flow ID"); // Run Lamatic Flow @@ -28,7 +30,11 @@ export async function handleFixIssue(input: { const result = resData.result; const { analysis, fix, pr } = result; - console.log("[agent] Flow output:", result); + console.log("[agent] Flow output received", { + hasAnalysis: Boolean(result?.analysis), + hasFix: Boolean(result?.fix), + hasPr: Boolean(result?.pr), + }); return { success: true, @@ -65,9 +71,7 @@ export async function handleCreatePR(input: { const { issue_url, file_path, fix, pr } = input; // Extract repo info - const match = issue_url.match( - /github.com\/(.*?)\/(.*?)\/issues\/(\d+)/, - ); + const match = issue_url.match(/github.com\/(.*?)\/(.*?)\/issues\/(\d+)/); if (!match) throw new Error("Invalid GitHub issue URL"); const [, owner, repo] = match; diff --git a/kits/agentic/github-auto-fix-agent/config.json b/kits/agentic/github-auto-fix-agent/config.json new file mode 100644 index 00000000..42221f45 --- /dev/null +++ b/kits/agentic/github-auto-fix-agent/config.json @@ -0,0 +1,28 @@ +{ + "name": "GitHub Auto Fix Agent", + "description": "An agentic system that analyzes GitHub issues, generates minimal code fixes, and prepares pull requests automatically using Lamatic workflows.", + "tags": ["๐Ÿค– Agentic", "๐Ÿ›  Developer Tools", "โšก Automation"], + "author": { + "name": "Ritabrata Ghosh", + "email": "ritabrataghosh09@gmail.com" + }, + "steps": [ + { + "id": "github-auto-fix", + "type": "mandatory", + "envKey": "GITHUB_AUTO_FIX" + } + ], + "integrations": [], + "features": [ + "Analyze GitHub issues using AI", + "Identify root cause of bugs", + "Generate minimal code fixes", + "Prepare PR title, body, and branch", + "One-click pull request creation" + ], + "demoUrl": "https://agent-kit-beta.vercel.app/", + "githubUrl": "https://github.com/Lamatic/AgentKit/tree/main/kits/agentic/github-auto-fix-agent", + "deployUrl": "https://vercel.com/new/clone?repository-url=https://github.com/RitoG09/AgentKit&root-directory=kits/agentic/github-auto-fix-agent", + "documentationUrl": "" +} From b8fc32ff5eeaf94f5550820dc1fd3bc443f225c8 Mon Sep 17 00:00:00 2001 From: Ritabrata Ghosh <76sonali40@gmail.com> Date: Sat, 28 Mar 2026 18:56:11 +0530 Subject: [PATCH 5/5] changes:02 --- kits/agentic/github-auto-fix-agent/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kits/agentic/github-auto-fix-agent/config.json b/kits/agentic/github-auto-fix-agent/config.json index 42221f45..035c5214 100644 --- a/kits/agentic/github-auto-fix-agent/config.json +++ b/kits/agentic/github-auto-fix-agent/config.json @@ -23,6 +23,6 @@ ], "demoUrl": "https://agent-kit-beta.vercel.app/", "githubUrl": "https://github.com/Lamatic/AgentKit/tree/main/kits/agentic/github-auto-fix-agent", - "deployUrl": "https://vercel.com/new/clone?repository-url=https://github.com/RitoG09/AgentKit&root-directory=kits/agentic/github-auto-fix-agent", + "deployUrl": "https://vercel.com/new/clone?repository-url=https://github.com/Lamatic/AgentKit&root-directory=kits/agentic/github-auto-fix-agent", "documentationUrl": "" }